search for: ovirt_bootparams

Displaying 10 results from an estimated 10 matches for "ovirt_bootparams".

2011 Aug 10
0
[PATCH] remove network page loop when selecting other pages
...if pressed == BACK_BUTTON: self.__current_page = NETWORK_PAGE elif self.net_apply_config == 1: self.__current_page = NETWORK_PAGE - elif is_managed(OVIRT_VARS["OVIRT_BOOTPARAMS"]): + elif is_managed(): dev_interface,dev_bootproto,dev_vendor,dev_address,dev_driver,dev_conf_status = self.nic_dict[self.nic_lb.current()].split(",", 5) if self.configured_nics >= 1 and...
2010 Oct 26
0
[PATCH node] add install.py
...config-boot livecd_path bootparams reboot +# +# livecd_path - where livecd media is mounted, +# parent of LiveOS and isolinux folders +# default is /live +# +# bootparams - extra boot parameters like console=... +# default is $OVIRT_BOOTPARAMS +# +# reboot - reboot after install +# default is yes + +from ovirtfunctions import * +import shutil +import sys + +def ovirt_boot_setup(): + + log("installing the image.") + + if OVIRT_VARS["OVIRT_ROOT_INSTALL"] == "n": + lo...
2009 Nov 16
1
Refactored upgrade patch...
This patch includes feedback from apevec to remain backward compatible with the previous karg, ovirt_local_boot.
2009 Nov 13
1
[PATCH] Provides an explicit upgrade path for an installed node.
...fi @@ -46,14 +46,18 @@ start () ovirt-config-networking AUTO ovirt-config-logging AUTO ovirt-config-collectd AUTO - ovirt-config-password AUTO - if [ "$OVIRT_LOCAL_BOOT" = 1 ]; then - mount_live - ovirt-config-boot /live "$OVIRT_BOOTPARAMS" no - disable_firstboot - reboot - fi - elif is_firstboot; then + ovirt-config-password AUTO + fi + + if is_upgrade; then + mount_live + ovirt-config-boot /live "$OVIRT_BOOTPARAMS" no + disable_firstboot + reboo...
2009 Nov 16
2
Resend...
Resending the refactored patch: I realized after I emailed it that it referenced the wrong bugzilla.
2009 Jul 22
1
Updated patch...
This patch obsoletes the previous, renaming the karg to ssh_pwauth.
2009 Jul 22
1
Changes the ssh karg to ssh_pwauth
This patch obsoletes the previous one with feedback from pmyers at redhat.com.
2009 Jun 30
2
[PATCH node] Make all yes/no prompts consistent. rhbz#508778
..., 109 insertions(+), 90 deletions(-) diff --git a/scripts/ovirt-config-boot-wrapper b/scripts/ovirt-config-boot-wrapper index ff6f6e5..4ce9969 100755 --- a/scripts/ovirt-config-boot-wrapper +++ b/scripts/ovirt-config-boot-wrapper @@ -24,14 +24,12 @@ continuing." else bootparams="${OVIRT_BOOTPARAMS}" fi - read -p "Do you wish to continue (Y/n)? " - r=$(echo $REPLY|tr '[[:lower:]]' '[[:upper:]]') - if [ "$r" == "Y" ]; then + if ask_yes_or_no; then mount_live \ - && /usr/sbin/ovirt-config-boot /live &quo...
2010 Feb 10
1
RFC: First pass at making the node generic...
I'm looking for feedback on this first patch. The node has been pushed towards a more generic boot process. With this patch the node can now boot up and execute a few specifically-named scripts that reside in /etc/node.d/ at key points during the startup. After this goes upstream, the next step will be to define in more detail the remote interfaces for the "managed" runtime
2010 Feb 23
1
More complete patch...
This patch supercedes the previous one by moving the functionality for relocating files into the make system.