summaryrefslogtreecommitdiffstats
path: root/lvm.py
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2007-01-04 21:04:28 +0000
committerPeter Jones <pjones@redhat.com>2007-01-04 21:04:28 +0000
commite87e35762b76efe1a40cd9c3d49224553a89be00 (patch)
tree57b85aad9747cd04fc05c78bc0a4251c1396df17 /lvm.py
parentcc21d161f322d0231a4b5a846e4154e7b7d8d089 (diff)
downloadanaconda-e87e35762b76efe1a40cd9c3d49224553a89be00.tar.gz
anaconda-e87e35762b76efe1a40cd9c3d49224553a89be00.tar.xz
anaconda-e87e35762b76efe1a40cd9c3d49224553a89be00.zip
- Can't LVM just fucking die?
Diffstat (limited to 'lvm.py')
-rw-r--r--lvm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lvm.py b/lvm.py
index db901995b..8ba17aa85 100644
--- a/lvm.py
+++ b/lvm.py
@@ -169,7 +169,7 @@ def vgremove(vgname):
# now iterate all the PVs we've just freed up, so we reclaim the metadata
# space. This is an LVM bug, AFAICS.
for pvname in pvs:
- args = ["pvremove", "-ff", pvname]
+ args = ["pvremove", "-ff", "-y", pvname]
log.info(string.join(args, ' '))
rc = iutil.execWithRedirect("lvm", args, stdout = output,