similar to: [PATCH] Added two libvirt directories to the initial node image that are not created by the RPM.

Displaying 20 results from an estimated 9000 matches similar to: "[PATCH] Added two libvirt directories to the initial node image that are not created by the RPM."

2009 May 27
1
[PATCH node] Compress all rotated logs.
Removes the delaycompress line so that every rotation is compressed. Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- logrotate/ovirt-logrotate.conf | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/logrotate/ovirt-logrotate.conf b/logrotate/ovirt-logrotate.conf index 8747f59..8b89a2d 100644 --- a/logrotate/ovirt-logrotate.conf +++
2009 Jul 24
1
[PATCH node-image] Expanded the size of the livecd image.
It's not 600M in order to accomodate new RPMs. Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- common-install.ks | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common-install.ks b/common-install.ks index a20a5b4..2a7fbb7 100644 --- a/common-install.ks +++ b/common-install.ks @@ -4,7 +4,7 @@ timezone --utc UTC auth --useshadow --enablemd5 selinux
2009 Jul 22
1
[PATCH ovirt-node-image] alias vi to vi + restorecon
fixes a problem with editing a bindmounted file with vi. The file will not retain the same selinux context due to the way vi copies files around. Resolves rhbz#509082 --- common-post.ks | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/common-post.ks b/common-post.ks index 8a4940a..c85be15 100644 --- a/common-post.ks +++ b/common-post.ks @@ -131,6 +131,11 @@ sed -i
2009 Jun 30
2
[PATCH node] Make all yes/no prompts consistent. rhbz#508778
Added a new function, "ask_yes_or_no", to ovirt-functions. It contains a default prompt if none is provided. Changed all prompts that ask for yes, no and/or abort to use this new method. Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- scripts/ovirt-config-boot-wrapper | 8 ++--- scripts/ovirt-config-collectd | 39 +++++++++++++++-----------
2009 Sep 01
1
[PATCH node-image] readonly rootfs setup
This completes the read only rootfs, all needed writable directories are in the tmpfs. Signed-off-by: Joey Boggs <jboggs at redhat.com> --- common-post.ks | 12 ++++++++++++ ovirt-node-image.ks | 1 + 2 files changed, 13 insertions(+), 0 deletions(-) diff --git a/common-post.ks b/common-post.ks index 0c0a3f4..44a0270 100644 --- a/common-post.ks +++ b/common-post.ks @@ -146,3
2009 Oct 26
0
[PATCH node] Users can now work with remote libvirt hosts.
The user can: * select a remote machine * add a remote machine * remove a remote machine Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- nodeadmin/addhost.py | 129 ++++++++++++++++++++++++++++++++++++++++++++ nodeadmin/changehost.py | 58 ++++++++++++++++++++ nodeadmin/configscreen.py | 36 ++++++++++++- nodeadmin/definenet.py | 1 +
2009 Jul 14
1
[PATCH node] Filters out all non-physical networking devices.
This patch will scan through the list of devices that have the net.80203 capability. It will then also ensure that only those which originate from a physical device and are not logical devices are presented. Resolves: rhbz#511369 Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- scripts/ovirt-config-networking | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff
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
2009 Aug 18
1
[PATCH node] Fixes when the user aborts DNS entry then retries it.
Previously the code did not empty the $DNS variable when the user said the configuration was incorrect. Now, when they say it's incorrect, the variable is blanked. Resolves: rhbz#518021 Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- scripts/ovirt-config-networking | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/scripts/ovirt-config-networking
2009 Jul 16
1
[PATCH node-image] Removes the explicit setting of the emulator for testing.
Instead, the script lets libvirt determine which emulator to use. Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- autotest.sh | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/autotest.sh b/autotest.sh index c9f8a2d..96a15b5 100755 --- a/autotest.sh +++ b/autotest.sh @@ -270,7 +270,6 @@ define_node () { # flexible options # define defaults,
2009 Jul 21
2
[PATCH node-image] Adds a preserve option for autotest VMs.
If the -p option is provided, then no VMs are destroyed. Instead they, and their related networks, are left intact. Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- autotest.sh | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/autotest.sh b/autotest.sh index c9f8a2d..b72ec98 100755 --- a/autotest.sh +++ b/autotest.sh @@ -219,6 +219,9 @@
2010 Apr 21
1
[PATCH matahari] Created a new platform-abstraction layer named Platform.
It provides an initial implementation, LinuxPlatform, which is by default included in the build. Later code will refactor the build process to include the appropriate implementation depending on the target platform. Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- src/Makefile.am | 4 ++ src/linux_platform.cpp | 117 ++++++++++++++++++++++++++++++++++++++++++++++++
2009 Sep 28
1
[PATCH node-image] update rwtab entries for /live, /boot, and /var/lib/random-seed
This fixes a few boot,install and reboot items - creates and adds entries in rwtab.d/ovirt for /live and /boot - unblacklists /boot so the directory is there on boot - touches random-seed to fix a reboot error --- common-blacklist.ks | 2 +- common-post.ks | 5 +++++ 2 files changed, 6 insertions(+), 1 deletions(-) diff --git a/common-blacklist.ks b/common-blacklist.ks index
2009 Jul 15
1
[PATCH node] Changes the exit/continue based on context.
If the script is run during the system startup then it says "Continue with stateless boot". If the script is run from the command line then it says "Quite and Exit". Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- scripts/ovirt-config-setup | 22 ++++++++++++++++++++-- scripts/ovirt-firstboot | 2 +- 2 files changed, 21 insertions(+), 3 deletions(-)
2009 Oct 14
0
[PATCH node] Provides a new storage administration system to the managed node.
Users can now: * Add a new storage pool. * Delete a storage pool. * Start and stop storage pools. * Add a new storage volume. * Delete a storage volume. * List existing storage pools, with details. Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- Makefile.am | 31 +++++--- nodeadmin/addpool.py | 182 ++++++++++++++++++++++++++++++++++++++++++++
2009 Nov 13
1
[PATCH] Provides an explicit upgrade path for an installed node.
This patch allows the node to be upgraded without destroying any configuration. The new kernel argument, ovirt_upgrade, will boot cause the node to install the upgraded image, then reboot. Resolves: rhbz#527217 Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- scripts/ovirt-early | 14 +++++++------- scripts/ovirt-firstboot | 22 +++++++++++++---------
2009 Jul 14
0
[PATCH node] Changes the exit prompt based on whether it's firstboot of cmdline.
If the menu is launched during firstboot then the menu shows the "Continue with stateless boot" text. If the menu is launched from the cmdline then it will show "Exit". Resolves: rhbz#511122 Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- scripts/ovirt-config-setup | 18 +++++++++++++++++- 1 files changed, 17 insertions(+), 1 deletions(-) diff --git
2009 Aug 05
0
[PATCH node] Provides a workaround for HP CCISS devices.
Since they do not present a block.device property via HAL, this patch goes directly to /dev/cciss/ and pulls together any devices found there. It ignores anything that ends with p# since those are partitions and not block devices. Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- scripts/ovirt-config-storage | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff
2010 Mar 26
0
[PATCH] Moves building ovirt-node-image.iso into the ovirt-node repo.
Added a new subdirectory called "isobuilder" to the project. Created a new Makefile that only allows for creating the livecd version of the oVirt node. Adjusted the build environment to work with the kickstart files that are found in the repo and not ones installed via any previous RPM. Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- configure.ac | 1 +
2009 Jul 21
0
[PATCH node] Adds a new kernel cmdline argument to toggle SSH password auth.
The new karg is "ssh" and can be set using either 0/1 or true/false to set whether SSH password auth will be enabled or not during an automated install. rhbz#513037 Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- scripts/ovirt-config-password | 42 ++++++++++++++++++++++------------------ scripts/ovirt-early | 10 ++++++++- 2 files changed, 32