search for: ovirt_init

Displaying 20 results from an estimated 26 matches for "ovirt_init".

2011 Jul 29
0
[PATCH node] Add debugging info to dracut plugin
...uot; = "no" -o "$fb" = 0 ]; then + info "firtboot reinstall or uninstall parameter set to 0 or no, exitting" return 0 fi - +info "Found valid firstboot reinstall or uninstall parameter" # Check storage_init argument # Accept either storage_init or ovirt_init # Prefer storage_init # Blank entry will result in getting first disk -if getarg storage_init; then +if getarg storage_init >/dev/null; then storage_init="$(sed -r 's/^.*storage_init=([^ ]*) .*$/\1/' /proc/cmdline)" -elif getarg ovirt_init; then + info "Found st...
2009 Nov 04
1
[PATCH node] add ability to select separate disks for Root and HostVG in o-c-storage
This adds the ability to select 2 different disks for root and HostVG. ovirt_init kernel arg still works as intended but does not support multiple arguments, this will be added in next --- scripts/ovirt-config-storage | 150 ++++++++++++++++++++++++++---------------- 1 files changed, 94 insertions(+), 56 deletions(-) diff --git a/scripts/ovirt-config-storage b/scripts/ovirt-c...
2010 Jul 21
0
[PATCH] RFC: Advanced Storage Configuration
...although it could be hooked into manual install), while preserving the original style of specifying LVs. It accomplishes the following: * Add an optional AppVG * Offer new optional LVs - Data2,Swap2 - as part of the new AppVG * Allows the specification of multiple disks, per VG The new syntax for ovirt_init, which includes the original one, is: virt_init=HOSTVGDISK1[,HOSTVGDISK2...][;APPVGDISK1[,APPVGDISK2...]] where DISK=[usb|scsi[:serial#]|/dev/...] The new syntax for ovirt_vol, which includes the original one, is: ovirt_vol=size[,{Swap|Data|Config|Logging|Data2|Swap2}][:size...] or...
2009 May 21
1
[PATCH node] display descriptions for all disks
...: $SPACE MB + Physical Hard Disk: $(get_drive_size $DRIVE) Boot partition size: $BOOT_SIZE MB Swap partition size: $SWAP_SIZE MB Installation partition size: $ROOT_SIZE * 2 MB @@ -494,7 +501,7 @@ DATA_SIZE=${OVIRT_VOL_DATA_SIZE:-$default_data_size} if [ -n "$OVIRT_INIT" ]; then # if present, use the drive selected with 'ovirt_init' boot parameter DRIVE=$OVIRT_INIT - get_selected_drive_size + get_drive_size $DRIVE SPACE fi # if the node is Fedora then use GPT, otherwise use MBR -- 1.6.0.6
2010 Mar 17
1
[PATCH][node REPOST] Improve performance of multipath translations
...========================= - Boot Drive: $(get_drive_size $BOOTDRIVE) + Boot Drive: $(get_drive_size "$BOOTDRIVE") Boot partition size: $BOOT_SIZE EOF @@ -917,10 +930,10 @@ DATA_SIZE=${OVIRT_VOL_DATA_SIZE:-$default_data_size} if [ -n "$OVIRT_INIT" ]; then # if present, use the drive selected with 'ovirt_init' boot parameter # setting these the same until kernel cmdline argument implemented - translate_multipath_device $OVIRT_INIT DRIVE + translate_multipath_device "$OVIRT_INIT" DRIVE ROOTDRIVE=$DR...
2011 Jul 29
0
[PATCH node] fix dracut plugin wildcard handling
...ovirt-cleanup.sh +++ b/dracut/ovirt-cleanup.sh @@ -34,9 +34,9 @@ fi # Blank entry will result in getting first disk if getarg storage_init; then - storage_init=$(getarg storage_init) + storage_init="$(sed -r 's/^.*storage_init=([^ ]*) .*$/\1/' /proc/cmdline)" elif getarg ovirt_init; then - storage_init=$(getarg ovirt_init) + storage_init="$(sed -r 's/^.*ovirt_init=([^ ]*) .*$/\1/' /proc/cmdline)" else return 0 fi @@ -49,13 +49,13 @@ fi # would partition sda and sdb as part of HostVG and # sdc and sdd as part of AppVG # Since we only care whic...
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
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
2009 Jul 10
0
[PATCH node] This is a follow-on patch for bz#507455.
...e $DRIVE) + Physical Hard Disk: $(print_drive_size $DRIVE) Boot partition size: $BOOT_SIZE MB Swap partition size: $SWAP_SIZE MB Installation partition size: $ROOT_SIZE * 2 MB @@ -519,7 +588,7 @@ DATA_SIZE=${OVIRT_VOL_DATA_SIZE:-$default_data_size} if [ -n "$OVIRT_INIT" ]; then # if present, use the drive selected with 'ovirt_init' boot parameter DRIVE=$OVIRT_INIT - get_drive_size $DRIVE SPACE + print_drive_size $DRIVE SPACE fi # if the node is Fedora then use GPT, otherwise use MBR @@ -548,6 +617,19 @@ if [ "$1" == &quo...
2009 Jul 01
1
Replacement patch for bz#507455
This patch includes a fix to no longer list devices with 0 bytes of storage, such as removeable media devices with no media present.
2011 Aug 25
0
[PATCH node] always remove HostVG in dracut when reinstall/uninstall/firstboot passed
...le "$moddir/ovirt-boot-functions" /sbin/ovirt-boot-functions diff --git a/dracut/ovirt-cleanup.sh b/dracut/ovirt-cleanup.sh index 1d7db84..c96d6fe 100755 --- a/dracut/ovirt-cleanup.sh +++ b/dracut/ovirt-cleanup.sh @@ -40,10 +40,19 @@ if [ $? -eq 1 ]; then storage_init="$(getargs ovirt_init)" if [ $? -eq 1 ]; then info "storage_init or ovirt_init arguments not found" - return 0 + else + info "Found storage_init: $storage_init" fi fi -info "Found storage_init: $storage_init" + +# Check for HostVG +lvm pvscan >...
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 Oct 01
1
Repost of Patch 6/6 for ovirt-node
All other patches from the sequence remain unchanged. Repost of patch 6 based on comments from Joey to follow. Mike
2009 Nov 13
1
[PATCH] Provides an explicit upgrade path for an installed node.
...22 +++++++++++++--------- scripts/ovirt-functions | 12 +++++++++++- 3 files changed, 31 insertions(+), 17 deletions(-) diff --git a/scripts/ovirt-early b/scripts/ovirt-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() {...
2010 Mar 31
1
[PATCH node] Handle space in storage wwid
...csiadm -p $OVIRT_ISCSI_TARGET_IP:$OVIRT_ISCSI_TARGET_PORT -m discovery -t sendtargets + iscsiadm -p "$OVIRT_ISCSI_TARGET_IP:$OVIRT_ISCSI_TARGET_PORT" -m discovery -t sendtargets log "Restarting iscsi service" service iscsi restart @@ -927,8 +927,8 @@ if [ -n "$OVIRT_INIT" ]; then # if present, use the drive selected with 'ovirt_init' boot parameter # setting these the same until kernel cmdline argument implemented translate_multipath_device "$OVIRT_INIT" DRIVE - ROOTDRIVE=$DRIVE - HOSTVGDRIVE=$DRIVE + ROOTDRIVE="$...
2009 Aug 11
1
[PATCH server] remove appliance bits
...=oVirt-Node-$node_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.*/ONT...
2009 Nov 16
2
Resend...
Resending the refactored patch: I realized after I emailed it that it referenced the wrong bugzilla.
2009 May 20
2
[PATCH node] Adds support for a core dump partition to the node.
...IRT_VOL_ROOT_SIZE:-$default_root_size} CONFIG_SIZE=${OVIRT_VOL_CONFIG_SIZE:-$default_config_size} LOGGING_SIZE=${OVIRT_VOL_LOGGING_SIZE:-$default_logging_size} +COREDUMP_SIZE=${OVIRT_VOL_COREDUMP_SIZE:-$default_coredump_size} DATA_SIZE=${OVIRT_VOL_DATA_SIZE:-$default_data_size} if [ -n "$OVIRT_INIT" ]; then diff --git a/scripts/ovirt-early b/scripts/ovirt-early index ac54e4b..b11b85d 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -129,7 +129,7 @@ start() { # oVirt boot parameters # BOOTIF=link|eth*|<MAC> (appended by pxelinux) # ovirt_init=[usb|scs...
2010 Oct 22
0
[PATCH node] First draft of replacing some of the ovirt-config-* scripts with python equivalents.
...+ if ret > 0: + return False + return True + +# perform automatic local disk installation +# when at least following boot parameters are present: +# for networking - OVIRT_BOOTIF, management NIC +# if other ip bootparams are not specified, IPv4 DHCP is assumed +# for storage - OVIRT_INIT, local disk to use +# if ovirt_vol is not specified, default volume sizes are set +def is_auto_install(): + if OVIRT_VARS.has_key("OVIRT_BOOTIF") and OVIRT_VARS.has_key("OVIRT_INIT"): + return True + else: + return False + +# return 0 if this is an upgr...
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":