summaryrefslogtreecommitdiffstats
path: root/partRequests.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-07-08 03:00:53 +0000
committerJeremy Katz <katzj@redhat.com>2003-07-08 03:00:53 +0000
commit459119c94529602d08de465b7ebfa4871d328081 (patch)
tree369a7eb643938d6d51ef6f2d0c46561e61dcc0ae /partRequests.py
parent390977d3ee0ebc010168ce04573f63ae15458718 (diff)
downloadanaconda-459119c94529602d08de465b7ebfa4871d328081.tar.gz
anaconda-459119c94529602d08de465b7ebfa4871d328081.tar.xz
anaconda-459119c94529602d08de465b7ebfa4871d328081.zip
massive merge from taroon branch. changes are all over the place, but a
summary of looking through the diff is * clean up warnings, we build with -Wall -Werror here too * product.img stuff * max logical partitions enforcement * 1 TB max fs size * ethtool stuff * autopart in kickstart * driver disk fixes * RHEL upgrade stuff * network driver disks * variant pkgorder/tree splitting
Diffstat (limited to 'partRequests.py')
-rw-r--r--partRequests.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/partRequests.py b/partRequests.py
index 680588408..4d4fe7504 100644
--- a/partRequests.py
+++ b/partRequests.py
@@ -200,12 +200,13 @@ class RequestSpec:
def doMountPointLinuxFSChecks(self):
"""Return an error string if the mountpoint is not valid for Linux FS."""
- mustbeonroot = ['/bin','/dev','/sbin','/etc','/lib','/root',
- '/mnt', 'lost+found', '/proc']
- mustbeonlinuxfs = ['/', '/boot', '/var', '/tmp', '/usr', '/home']
+ mustbeonroot = ('/bin','/dev','/sbin','/etc','/lib','/root',
+ '/mnt', 'lost+found', '/proc')
+ mustbeonlinuxfs = ('/', '/boot', '/var', '/tmp', '/usr', '/home',
+ '/usr/share', '/usr/lib' )
# these are symlinks so you cant make them mount points
- otherexcept = ['/var/mail', '/usr/bin/X11', '/usr/lib/X11', '/usr/tmp']
+ otherexcept = ('/var/mail', '/usr/bin/X11', '/usr/lib/X11', '/usr/tmp')
if not self.mountpoint:
return None