diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-06-11 02:54:57 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-06-11 02:54:57 +0000 |
commit | 8ab1f11ec4e0aa5899d9078c0415429ef6f06932 (patch) | |
tree | f1b29795f37debc32fb73891edc793ffda73930e /fsset.py | |
parent | 2588549674ab8137e3eaf79734bf5d57c46091ab (diff) | |
download | anaconda-8ab1f11ec4e0aa5899d9078c0415429ef6f06932.tar.gz anaconda-8ab1f11ec4e0aa5899d9078c0415429ef6f06932.tar.xz anaconda-8ab1f11ec4e0aa5899d9078c0415429ef6f06932.zip |
don't autobackup vg information... that wastes lots of valuable initrd space
Diffstat (limited to 'fsset.py')
-rw-r--r-- | fsset.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1550,7 +1550,7 @@ class VolumeGroupDevice(Device): # rescan now that we've recreated pvs. ugh. lvm.vgscan() - args = [ "/usr/sbin/vgcreate", "-v", + args = [ "/usr/sbin/vgcreate", "-v", "-An", "-s", "%sk" %(self.physicalextentsize,), self.name ] args.extend(nodes) @@ -1591,7 +1591,7 @@ class LogicalVolumeDevice(Device): rc = iutil.execWithRedirect("/usr/sbin/lvcreate", ["lvcreate", "-L", "%dM" % (self.size,), - "-n", self.name, + "-n", self.name, "-An", self.volumeGroup], stdout = "/tmp/lvmout", stderr = "/tmp/lvmout", |