search for: breth

Displaying 5 results from an estimated 5 matches for "breth".

Did you mean: bret
2009 Jul 22
1
[PATCH][NODE] Cleanup old bridges when re-running o-c-networking
From: Michael Burns <mburns at redhat.com> Detects and removes existing bridges named breth* Resolves rhbz#513062 Signed-off-by: Michael Burns <mburns at redhat.com> --- scripts/ovirt-config-networking | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/scripts/ovirt-config-networking b/scripts/ovirt-config-networking index cc7626b..837d493 100755 --- a/s...
2011 Aug 11
1
[PATCH] fix augtool calls
parse input augtool strings to oper,key,value --- scripts/network.py | 32 ++++++++++++++++---------------- 1 files changed, 16 insertions(+), 16 deletions(-) diff --git a/scripts/network.py b/scripts/network.py index f51ee7c..65b551c 100644 --- a/scripts/network.py +++ b/scripts/network.py @@ -165,11 +165,11 @@ class Network: ntpconf = ntpconf.split("\n") for line
2011 Aug 15
0
[PATCH node] Don't start ntp daemons until networking is started
...- log("\nStopping Network service") + log("\nStopping Network services") os.system("service network stop &> /dev/null") + os.system("service ntpd stop &> /dev/null") # XXX eth assumed in breth brctl_cmd = "brctl show|grep breth|awk '{print $1}'" brctl = subprocess.Popen(brctl_cmd, shell=True, stdout=PIPE, stderr=STDOUT) @@ -270,6 +276,8 @@ class Network: os.system(del_br_cmd) log("\nStarting Network service&qu...
2009 Jun 09
0
Announcing oVirt 0.99
...bonding, bridges are defined and handle edge cases - many tests fixes - many bugfixes Release 0.97 (oVirt Server Suite) - added host / pool audit trail - added task list to daskboard - added plethora of missing model validations - taskomatic / qpid integration - changed ovirtbr -> breth - removed ovirt-cfgdb - update search index every 1/2 hr - navigation tree interface and functionality improvements - kerberos authentication for qpidd - storage volumn api, rest interface, and other improvements - allow vm vnc connections to be forwarded via server - discontinued ovi...
2010 Oct 25
0
[PATCH node] add network.py script
...config("/etc/sysconfig/network-scripts/ifcfg* NTP_CONFIG_FILE") + log("Network configured successfully") + if net_configured == 1: + os.system("service network stop > /dev/null 2>&1") + brctl_cmd = "brctl show|grep breth|awk '{print $1}'" + brctl = subprocess.Popen(brctl_cmd, shell=True, stdout=PIPE, stderr=STDOUT) + brctl_output = brctl.stdout.read() + for i in brctl_output.split(): + if_down_cmd = "ifconfig %s down" % i + os.sys...