diff options
author | Mike Fulbright <msf@redhat.com> | 2000-04-26 19:04:48 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2000-04-26 19:04:48 +0000 |
commit | 2995980370c80905ed574b3d9d2d35a7a5fa83cc (patch) | |
tree | b6c49b22e27d27b882caae88d0a4d0f9b926be88 /installclass.py | |
parent | 3d18429a3268d0483a2e43bf308413639c110c4b (diff) | |
download | anaconda-2995980370c80905ed574b3d9d2d35a7a5fa83cc.tar.gz anaconda-2995980370c80905ed574b3d9d2d35a7a5fa83cc.tar.xz anaconda-2995980370c80905ed574b3d9d2d35a7a5fa83cc.zip |
Added --bytes-per-inode option to ks part command
Diffstat (limited to 'installclass.py')
-rw-r--r-- | installclass.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installclass.py b/installclass.py index 14aa94aa4..2e4218e2e 100644 --- a/installclass.py +++ b/installclass.py @@ -66,14 +66,14 @@ class InstallClass: self.raidList.append(mntPoint, raidDev, level, devices) - def addNewPartition(self, mntPoint, size, maxSize, grow, device): + def addNewPartition(self, mntPoint, size, maxSize, grow, device, fsopts=None): if not device: device = "" if mntPoint[0] != '/' and mntPoint != 'swap' and \ mntPoint[0:5] != "raid.": raise TypeError, "bad mount point for partitioning: %s" % \ (mntPoint,) - self.partitions.append((mntPoint, size, maxSize, grow, device)) + self.partitions.append((mntPoint, size, maxSize, grow, device, fsopts)) def addToFstab(self, mntpoint, dev, fstype = "ext2" , reformat = 1): self.fstab.append((mntpoint, (dev, fstype, reformat))) |