Displaying 12 results from an estimated 12 matches for "ovirt_local_boot".
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.
...early
index cdd4afd..cda1b3f 100755
--- a/scripts/ovirt-early
+++ b/scripts/ovirt-early
@@ -135,7 +135,7 @@ start() {
# ovirt_init=[usb|scsi[:serial#]|/dev/...]
# ovirt_vol=BOOT_MB:SWAP_MB:ROOT_MB:CONFIG_MB:LOGGING_MB:DATA_MB
# ovirt_overcommit=<overcommit_ratio>
- # ovirt_local_boot
+ # ovirt_upgrade
# ovirt_standalone
# ovirt_firstboot
# rescue
@@ -182,9 +182,9 @@ start() {
# or a specific positive number in MB
vol_data_size=
- # ovirt_local_boot
+ # ovirt_upgrade
# install/update oVirt Node image on the local installation...
2009 Nov 16
2
Resend...
Resending the refactored patch: I realized after I emailed it that it
referenced the wrong bugzilla.
2011 Aug 30
0
[PATCH node] don't trigger upgrade when local_boot_trigger is passed
...etions(-)
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
unmount_config /etc/passwd /etc/shadow
--
1.7.6
2009 May 20
2
[PATCH node] Adds support for a core dump partition to the node.
...lt;MAC> (appended by pxelinux)
# ovirt_init=[usb|scsi[:serial#]|/dev/...]
- # ovirt_vol=BOOT_MB:SWAP_MB:ROOT_MB:CONFIG_MB:LOGGING_MB:DATA_MB
+ # ovirt_vol=BOOT_MB:SWAP_MB:ROOT_MB:CONFIG_MB:LOGGING_MB:COREDUMP_MB:DATA_MB
# ovirt_overcommit=<overcommit_ratio>
# ovirt_local_boot
# ovirt_standalone
@@ -166,13 +166,14 @@ start() {
# w/o value - grab the first disk (/dev/?da)
init=
- # ovirt_vol=BOOT_MB:SWAP_MB:ROOT_MB:CONFIG_MB:LOGGING_MB:DATA_MB
+ # ovirt_vol=BOOT_MB:SWAP_MB:ROOT_MB:CONFIG_MB:LOGGING_MB:COREDUMP_MB:DATA_MB
# local partition...
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 Aug 11
1
[PATCH server] remove appliance bits
...e_arch --distro=oVirt-Node-$node_arch
-cobbler system add --netboot-enabled=1 --profile=oVirt-Node-$node_arch \
- --name=node3 --mac=00:16:3e:12:34:57
-cobbler system add --netboot-enabled=1 --profile=oVirt-Node-$node_arch \
- --name=node4 --mac=00:16:3e:12:34:58 --kopts="ovirt_init=scsi ovirt_local_boot"
-cobbler system add --netboot-enabled=1 --profile=oVirt-Node-$node_arch \
- --name=node5 --mac=00:16:3e:12:34:59 --kopts="ovirt_init=scsi"
sed -i -e '/kernel /a \\tIPAPPEND 2' /etc/cobbler/pxe/pxesystem.template
sed -i -e "s/^ONTIMEOUT.*/ONTIMEOUT oVirt-Node-$nod...
2009 May 19
1
[PATCH node-image] Fixing the autotest script.
..._pxe () {
start_networking $nodename $IFACE_NAME false true $workdir
configure_node "${nodename}" "network" "" "10000" "" "local noapic=true"
- boot_with_pxe "${nodename}" "ovirt_standalone ovirt_init=/dev/vda ovirt_local_boot ip=${ipaddress}" ${workdir}
+ boot_with_pxe "${nodename}" "standalone storage_init=/dev/vda local_boot ip=${ipaddress}" ${workdir}
# verify the booting and installation
expect -c '
@@ -586,10 +584,10 @@ expect {
-exact "Starting partitioning of...
2010 Jan 19
1
How I installed ovirt on fc 12
Hi,
I installed ovirt on fedora 12 (64 bits) successfully but I had to make some changes to make it work.
1. Installation from rpms builded from the lastest git version
2. Patch ace : missing backslashes in sed commands
vim /usr/share/ace/modules/ovirt/manifests/freeipa.pp
line 33 : '/\\[kdcdefaults\\]/a \\ kdc_ports = 88'
single_exec {"set_kdc_defaults":
2010 Jul 21
0
[PATCH] RFC: Advanced Storage Configuration
...8)
+ vol_data2_size=$size
+ ;;
+ esac
+ ;;
+ esac
+ fi
+ fi
+ done
;;
ovirt_upgrade* |ovirt_local_boot*)
upgrade=1
@@ -455,7 +592,7 @@ start_ovirt_early () {
ip_gateway=$gateway
fi
# save boot parameters as defaults for ovirt-config-*
- params="bootif init vol_boot_size vol_swap_size vol_root_size vol_config_size vol_logging_size vol_data_size upgrade standalo...
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