summaryrefslogtreecommitdiffstats
path: root/lvm.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-12-03 22:27:36 +0000
committerJeremy Katz <katzj@redhat.com>2004-12-03 22:27:36 +0000
commitbcde8099769e9b21df4dac10e4f0421e81aa3048 (patch)
tree421115dce60b90370ab23884ae9c50a54471b84b /lvm.py
parent08104b9b6250b7ad52d8e1ddcc6443b66604a890 (diff)
downloadanaconda-bcde8099769e9b21df4dac10e4f0421e81aa3048.tar.gz
anaconda-bcde8099769e9b21df4dac10e4f0421e81aa3048.tar.xz
anaconda-bcde8099769e9b21df4dac10e4f0421e81aa3048.zip
actually find the partials
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 954783afe..07db14f32 100644
--- a/lvm.py
+++ b/lvm.py
@@ -233,7 +233,7 @@ def partialvgs():
return []
vgs = []
- args = ["lvm", "vgdisplay", "-C", "--noheadings", "--units", "b"]
+ args = ["lvm", "vgdisplay", "-C", "-P", "--noheadings", "--units", "b"]
scanout = iutil.execWithCapture(args[0], args, searchPath = 1,
stderr = "/dev/tty6")
for line in scanout.split("\n"):