From e711b46cb7d9f1529328b9b048c39d2f71bdb647 Mon Sep 17 00:00:00 2001 From: Mike Fulbright Date: Thu, 1 Feb 2001 23:12:34 +0000 Subject: Several changes: - fixed bug where if no partition were specified to be allocated in ks, goto 'unslicable ....' error - made linear default for kickstart LILO option - made it so firewall and lba32warning messages skipped in ks mode --- fstab.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fstab.py') diff --git a/fstab.py b/fstab.py index b88540f4e..0e9361c6e 100644 --- a/fstab.py +++ b/fstab.py @@ -220,7 +220,6 @@ class Fstab: if bootpart[0:2] == "md": return 0 - (drives, raid) = self.partitionList() for (dev, devName, type, start, size, maxcyl, preexist) in drives: @@ -821,7 +820,8 @@ class Fstab: "This most likely means this partition has " "not been formatted.\n\nPress OK to reboot your " "system.") % (device, mntpoint, msg)) - raise SystemError, (errno, msg) +# raise SystemError, (errno, msg) + sys.exit(0) try: os.mkdir (instPath + '/proc') -- cgit