From 2995980370c80905ed574b3d9d2d35a7a5fa83cc Mon Sep 17 00:00:00 2001 From: Mike Fulbright Date: Wed, 26 Apr 2000 19:04:48 +0000 Subject: Added --bytes-per-inode option to ks part command --- installclass.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'installclass.py') 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))) -- cgit