similar to: [PATCH][NODE] Cleanup old bridges when re-running o-c-networking

Displaying 20 results from an estimated 400 matches similar to: "[PATCH][NODE] Cleanup old bridges when re-running o-c-networking"

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
- Default NETWORKING=no in /etc/sysconfig/network - Update to yes when configuring network through TUI or firstboot - After configuration in TUI, (re)start ntp daemons rhbz#675870 Signed-off-by: Mike Burns <mburns at redhat.com> --- recipe/common-post.ks | 6 ++++++ scripts/network.py | 10 +++++++++- scripts/ovirt-config-networking | 1 + 3 files
2010 Oct 25
0
[PATCH node] add network.py script
--- scripts/network.py | 207 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 207 insertions(+), 0 deletions(-) create mode 100644 scripts/network.py diff --git a/scripts/network.py b/scripts/network.py new file mode 100644 index 0000000..28e32f2 --- /dev/null +++ b/scripts/network.py @@ -0,0 +1,207 @@ +#!/usr/bin/python + +from ovirtfunctions import * +import tempfile
2010 Mar 24
2
[PATCH node][REPOST 1/2] Fix uninstall to detect and cleanup correct partitions
Previous implementation had staticly defined partitions to remove. This would break in the case of split Root and HostVG devices. Signed-off-by: Mike Burns <mburns at redhat.com> --- scripts/ovirt-config-boot | 11 +-------- scripts/ovirt-config-uninstall | 48 ++++++++++++++++++++++++--------------- scripts/ovirt-functions | 33 +++++++++++++++++++++++++++ 3 files
2010 Mar 23
1
[PATCH node][RFC] Remove dependencies on /dev/disk/by-label entries
Use findfs LABEL=ABC and mount LABEL=ABC instead. Signed-off-by: Mike Burns <mburns at redhat.com> --- scripts/ovirt-config-boot | 29 ++++++++++++++++------------- scripts/ovirt-config-storage | 2 -- scripts/ovirt-functions | 18 ++++++++++-------- 3 files changed, 26 insertions(+), 23 deletions(-) diff --git a/scripts/ovirt-config-boot b/scripts/ovirt-config-boot index
2010 Feb 24
5
New Storage related patches
This set of patches introduces support for multipath devices for storage. Comments and suggestions are appreciated. Mike
2010 Mar 30
2
[PATCH node] Default OVIRT_CACHE_DIR to be in root autobuild directory
Previously was not getting set to anything resulting in cache being stored in ~/ovirt-cache. For systems where multiple autobuilds are running, this can lead to issues with builds for one version getting rpms generated by another version. Signed-off-by: Mike Burns <mburns at redhat.com> --- autobuild.sh | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/autobuild.sh
2009 Sep 29
2
[PATCH node-image] add /var/lib/dnsmasq to rwtab
Virtual networks can now be created and destroyed with a r/o filesystem. Signed-off-by: Michael Burns <mburns at redhat.com> --- common-post.ks | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/common-post.ks b/common-post.ks index 44a0270..5531e08 100644 --- a/common-post.ks +++ b/common-post.ks @@ -151,6 +151,7 @@ rm -f /etc/cron.daily/logrotate sed -i
2010 Mar 10
1
[PATCH node] Fix reboot issue
Reboots were not working correctly due the use of "stop" when stopping services. It resulted in the reboot process dying. See https://bugzilla.redhat.com/show_bug.cgi?id=519366 for details. Signed-off-by: Mike Burns <mburns at redhat.com> --- scripts/ovirt | 2 +- scripts/ovirt-firstboot | 2 +- scripts/ovirt-post | 2 +- 3 files changed, 3
2009 Sep 26
10
Adding handling for Multipath storage devices
The following patches introduce support for multipath and cciss devices to the ovirt-node and node-image. Comments are appreciated. These patches assume that the 3 patches (2 node, 1 node-image) from Joey are all incorporated. Mike
2010 Feb 11
3
[PATCH node] remove ipv4 validation for ntp and rely on actual ntp verification
--- scripts/ovirt-config-networking | 13 ++++++------- scripts/ovirt-functions | 16 ++++++++++++++++ 2 files changed, 22 insertions(+), 7 deletions(-) diff --git a/scripts/ovirt-config-networking b/scripts/ovirt-config-networking index ec154c2..40a2d2c 100755 --- a/scripts/ovirt-config-networking +++ b/scripts/ovirt-config-networking @@ -414,12 +414,7 @@ function configure_ntp
2010 Mar 23
2
[PATCH] Remove initrd patching from oc-boot
Dracut includes what was being patched in Signed-off-by: Mike Burns <mburns at redhat.com> --- scripts/ovirt-config-boot | 47 --------------------------------------------- 1 files changed, 0 insertions(+), 47 deletions(-) diff --git a/scripts/ovirt-config-boot b/scripts/ovirt-config-boot index d13dad2..28d1572 100755 --- a/scripts/ovirt-config-boot +++ b/scripts/ovirt-config-boot @@
2010 Feb 24
1
[PATCH node] ovirt-post needs to wait on libvirtd to start
Ovirt-post wasn't dependent on libvirtd being started. Signed-off-by: Mike Burns <mburns at redhat.com> --- scripts/ovirt-post | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/scripts/ovirt-post b/scripts/ovirt-post index 951d108..326c0b8 100755 --- a/scripts/ovirt-post +++ b/scripts/ovirt-post @@ -4,7 +4,7 @@ # ### BEGIN INIT INFO # Provides: ovirt-post -#
2010 Mar 11
1
[PATCH node-image] store iso in build directory after autobuild
The iso is needed in the build directory for autotest.sh to work when running as part of autobuild. This enhances autobuild.sh to copy it over after the rpms are built. Signed-off-by: Mike Burns <mburns at redhat.com> --- autobuild.sh | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/autobuild.sh b/autobuild.sh index fb9de92..aeee7dd 100755 ---
2010 Mar 18
1
[PATCH node] cleanup a couple small issues
One instance of a variable being passed instead of a string and another instance of a tweak in a regular expression that doesn't work on F13. Signed-off-by: Mike Burns <mburns at redhat.com> --- scripts/ovirt-config-storage | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ovirt-config-storage b/scripts/ovirt-config-storage index 34e84e5..4f3f174
2010 Mar 24
1
[PATCH node] Fix blkid.conf to scan devices for findfs calls.
findfs in F12 finds partitions on /dev/sdX devices instead of /dev/mapper/<wwid> devices. This sets an option that forces findfs to scan instead. Signed-off-by: Mike Burns <mburns at redhat.com> --- recipe/common-post.ks | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/recipe/common-post.ks b/recipe/common-post.ks index 9243751..0a2e180 100644 ---
2010 Apr 07
1
[PATCH node] Fix defaulting of OVIRT_CACHE_DIR in recipe makefile
Due to a typo, the defaulting of OVIRT_CACHE_DIR in the recipe Makefile.am was broken. Signed-off-by: Mike Burns <mburns at redhat.com> --- recipe/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/recipe/Makefile.am b/recipe/Makefile.am index fb34437..d09905a 100644 --- a/recipe/Makefile.am +++ b/recipe/Makefile.am @@ -27,7 +27,7 @@ ARCH =
2011 Aug 05
1
[PATCH node] blacklist the libvirt-guests init script
In RHEVH, we don't use libvirt-guests init script. rhbz#728433 Signed-off-by: Mike Burns <mburns at redhat.com> --- recipe/rhevh6-minimizer.ks | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/recipe/rhevh6-minimizer.ks b/recipe/rhevh6-minimizer.ks index f3b5c2e..449f2c1 100644 --- a/recipe/rhevh6-minimizer.ks +++ b/recipe/rhevh6-minimizer.ks @@ -4,3 +4,4 @@
2011 Sep 12
1
[PATCH node] handle list of variables to ignore
rhbz#723115 Signed-off-by: Mike Burns <mburns at redhat.com> --- ovirt-node.spec.in | 4 ++++ scripts/ovirt-early | 6 +++++- 2 files changed, 9 insertions(+), 1 deletions(-) diff --git a/ovirt-node.spec.in b/ovirt-node.spec.in index 2d8a4bf..8321ba7 100644 --- a/ovirt-node.spec.in +++ b/ovirt-node.spec.in @@ -180,6 +180,9 @@ echo "# File where default configuration is
2011 Aug 31
1
[PATCH node] fix install when VG exists on disk
This only affects non-HostVG volume groups. rhbz#733578 Signed-off-by: Mike Burns <mburns at redhat.com> --- scripts/storage.py | 14 +++++++++++--- 1 files changed, 11 insertions(+), 3 deletions(-) diff --git a/scripts/storage.py b/scripts/storage.py index 5f7f0e3..047bcd1 100644 --- a/scripts/storage.py +++ b/scripts/storage.py @@ -90,13 +90,19 @@ class Storage: vg =