search for: start_ovirt_ear

Displaying 7 results from an estimated 7 matches for "start_ovirt_ear".

Did you mean: start_ovirt_early
2010 Mar 11
1
[PATCH] Changes the start/stop/reload method names for sysvinit scripts.
...;; + *) echo "Usage: $0 start" RETVAL=2 diff --git a/scripts/ovirt-early b/scripts/ovirt-early index 1ab0578..88070e3 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -172,7 +172,7 @@ configure_management_interface() { esac } -start() { +start_ovirt_early () { touch $VAR_SUBSYS_OVIRT_EARLY # oVirt boot parameters # BOOTIF=link|eth*|<MAC> (appended by pxelinux) @@ -511,18 +511,23 @@ EOF return 0 } -stop() { +stop_ovirt_early () { echo -n "Stopping ovirt-early: " success } +reload_ovirt_early ()...
2010 May 04
2
[PATCH node] save all not-parsed boot parameters
...ed-off-by: Alan Pevec <apevec at redhat.com> --- scripts/ovirt-early | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/ovirt-early b/scripts/ovirt-early index 4b85102..c17ea74 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -426,13 +426,13 @@ start_ovirt_early () { i=${i#collectd=} eval $(printf $i|awk -F: '{print "collectd_server="$1; print "collectd_port="$2;}') ;; - console=*) - bootparams="$bootparams $i" - ;; ovirt_early=*)...
2010 Jul 21
0
[PATCH] RFC: Encrypted swap support
...if [ -n ${OVIRT_CRYPT_SWAP2} -o -n ${OVIRT_CRYPT_SWAP} ]; then + ovirt_store_config /etc/ovirt-crypttab + fi stop_log } diff --git a/scripts/ovirt-early b/scripts/ovirt-early index 23198b1..5c8793d 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -239,6 +239,12 @@ start_ovirt_early () { vol_swap2_size= vol_data2_size= + # ovirt_swap_encrypt={Swap|Swap2},cypher1[:cypher2...][;{Swap|Swap2}...] + # request swap encryption + # the default cypher is set to aes-cbc-essiv:sha256 + crypt_swap= + crypt_swap2= + # ovirt_upgrade # install/updat...
2011 Jul 21
0
[PATCH] add netconsole autoinstall parameter
...ng netconsole server..." + ovirt_netconsole + fi else printf "\n\n Logging Configuration\n\n" prompt_user diff --git a/scripts/ovirt-early b/scripts/ovirt-early index 250bb3f..51a017c 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -548,6 +548,10 @@ start_ovirt_early () { i=${i#syslog=} eval $(printf $i|awk -F: '{print "syslog_server="$1; print "syslog_port="$2;}') ;; + netconsole=*) + i=${i#netconsole=} + eval $(printf $i|awk -F: '{print "netconsole_s...
2011 Sep 12
1
[PATCH node] handle list of variables to ignore
...sysconfdir}/ovirt-early.d +%{_sysconfdir}/ovirt-commandline.d %changelog * Mon Jun 20 2011 Alan Pevec <apevec at redhat.com> 2.0.0-1 diff --git a/scripts/ovirt-early b/scripts/ovirt-early index 0f617f7..322e16d 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -644,7 +644,11 @@ start_ovirt_early () { done ;; *) - bootparams="$bootparams $i" + # check the params to be ignored before adding to bootparams + varname=${i%=*} + if ! grep -qw /etc/ovirt-commandline.d/*; then + bootparams=...
2010 Jul 21
0
[PATCH] RFC: Advanced Storage Configuration
...if check_partition_sizes; then log "Partitioning hard disk..." perform_partitioning diff --git a/scripts/ovirt-early b/scripts/ovirt-early index 6dc8bee..23198b1 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -205,8 +205,10 @@ start_ovirt_early () { # BOOTIF=eth* e.g. BOOTIF=eth0 - use given interface bootif= - # ovirt_init=[usb|scsi[:serial#]|/dev/...] - # local installation target disk + # ovirt_init=HOSTVGDISK1[,HOSTVGDISK2...][;APPVGDISK1[,APPVGDISK2...]] + # where DISK=[usb|scsi[:serial#]|/dev/...] +...
2011 Aug 30
0
[PATCH node] don't trigger upgrade when local_boot_trigger is passed
...Signed-off-by: Mike Burns <mburns at redhat.com> --- scripts/ovirt-early | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/scripts/ovirt-early b/scripts/ovirt-early index fa24720..fa7d1f5 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -464,7 +464,7 @@ start_ovirt_early () { fi done ;; - upgrade* | ovirt_upgrade* | local_boot* | ovirt_local_boot*) + upgrade* | ovirt_upgrade* | local_boot | local_boot=* | ovirt_local_boot*) upgrade=1 if ! grep -q admin /etc/passwd; then...