Displaying 4 results from an estimated 4 matches for "d8aa008".
2010 Apr 01
2
[PATCH node 1/3] Enables ability to have a common shared root
---
scripts/ovirt-config-boot | 13 +++++++-
scripts/ovirt-config-storage | 73 +++++++++++++++++++++++++----------------
2 files changed, 56 insertions(+), 30 deletions(-)
diff --git a/scripts/ovirt-config-boot b/scripts/ovirt-config-boot
index d545878..8cc127b 100755
--- a/scripts/ovirt-config-boot
+++ b/scripts/ovirt-config-boot
@@ -29,6 +29,12 @@ ovirt_boot_setup() {
local disk2
2010 Mar 24
1
Resending a refactored patch...
This was an older patch that had to be rebased against the current
tip.
2010 Mar 24
1
Supercedes previous patch...
This includes a missed break and two spots where $ADDRESS was copied
as $address instead.
2010 Mar 31
1
[PATCH node] Handle space in storage wwid
...sting_hostvg $HOSTVGDRIVE
+ check_existing_hostvg "$HOSTVGDRIVE"
existingHostVG=$?
# ... unless overridden by ovirt_firstboot parameter
if is_firstboot || [ $existingHostVG -ne 0 ]; then
diff --git a/scripts/ovirt-functions b/scripts/ovirt-functions
index d8aa008..edf6267 100644
--- a/scripts/ovirt-functions
+++ b/scripts/ovirt-functions
@@ -148,7 +148,7 @@ EOF
#
wipe_volume_group()
{
- vg=$1
+ vg="$1"
for d in $(grep $vg /proc/mounts|awk '{print $2}'); do
log "Unmounting $d"
@@ -156,10 +156,10 @@ wipe_vol...