diff options
author | David Cantrell <dcantrell@redhat.com> | 2009-09-01 14:21:04 -1000 |
---|---|---|
committer | David Cantrell <dcantrell@redhat.com> | 2009-09-03 11:30:10 -1000 |
commit | 1ce1ff033efabfc9ad6b731adc51fa6ab06068e4 (patch) | |
tree | 16970c3f9685db2a66d554800708d9b005f2e2db /platform.py | |
parent | aad14f014b9cf8c2d9e5e3cfb6521740eb29b002 (diff) | |
download | anaconda-1ce1ff033efabfc9ad6b731adc51fa6ab06068e4.tar.gz anaconda-1ce1ff033efabfc9ad6b731adc51fa6ab06068e4.tar.xz anaconda-1ce1ff033efabfc9ad6b731adc51fa6ab06068e4.zip |
Expose common fsset methods and properties in class Storage.
Add the following methods and properties to class Storage which map
through to FSSet methods, modify existing calls to use the method on
class Storage:
turnOnSwap()
mountFilesystems()
umountFilesystems()
parseFSTab()
mkDevRoot()
createSwapFile()
fsFreeSpace()
mtab
mountpoints
migratableDevices
rootDevice
Callers no longer need to pass the Anaconda object to the FSSet methods
directly. The method on Storage takes care of that.
The mtab() method on FSSet is exposed as a property on Storage. The
same is true for fsFreeSpace().
Diffstat (limited to 'platform.py')
-rw-r--r-- | platform.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform.py b/platform.py index 122984e25..072efe5e5 100644 --- a/platform.py +++ b/platform.py @@ -127,7 +127,7 @@ class Platform(object): errors.append(_("Bootable partitions cannot be on an %s filesystem.") % req.format.name) # vfat /boot is insane. - if req == self.anaconda.id.storage.fsset.rootDevice and req.format.type == "vfat": + if req == self.anaconda.id.storage.rootDevice and req.format.type == "vfat": errors.append(_("Bootable partitions cannot be on an %s filesystem.") % req.format.type) if req.type == "luks/dm-crypt": |