[Ovirt-devel] [PATCH node] Fixes some small issues with the ovirt-config-storage script.

Darryl L. Pierce dpierce at redhat.com
Tue Dec 16 13:03:12 UTC 2008


Wraps the vgremove call in a conditional that checks that any volume
groups exist first.

Signed-off-by: Darryl L. Pierce <dpierce at redhat.com>
---
 scripts/ovirt-config-storage |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scripts/ovirt-config-storage b/scripts/ovirt-config-storage
index e2ddec1..369989c 100755
--- a/scripts/ovirt-config-storage
+++ b/scripts/ovirt-config-storage
@@ -157,7 +157,7 @@ perform_partitioning()
     LOG=/var/log/ovirt-partition.log
     {
     vgroups=$(vgdisplay -C | awk '{ print $1" "; }')
-    vgremove -f $vgroups
+    if [ -n "$vgroups" ]; then vgremove -f $vgroups; fi
 
     # Exit upon any failure.
     set -e
-- 
1.6.0.4




More information about the ovirt-devel mailing list