diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-07-23 02:58:36 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-07-23 02:58:36 +0000 |
commit | 6c21279bccd9fb3ba58dd7e6d8530032c8b2cd91 (patch) | |
tree | c69789a2a210bdab3e1cb0488a9b7f6d42fc9771 /fsset.py | |
parent | 55372716f787bd6037b5d7e6fce979b36dfc372e (diff) | |
download | anaconda-6c21279bccd9fb3ba58dd7e6d8530032c8b2cd91.tar.gz anaconda-6c21279bccd9fb3ba58dd7e6d8530032c8b2cd91.tar.xz anaconda-6c21279bccd9fb3ba58dd7e6d8530032c8b2cd91.zip |
extra format args could be specified for any filesystem really
Diffstat (limited to 'fsset.py')
-rw-r--r-- | fsset.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -118,6 +118,7 @@ class FileSystemType: self.supported = -1 self.defaultOptions = "defaults" self.migratetofs = None + self.extraFormatArgs = [] def mount(self, device, mountpoint, readOnly=0): if not self.isMountable(): @@ -264,7 +265,6 @@ class extFileSystem(FileSystemType): self.checked = 1 self.linuxnativefs = 1 self.maxSize = 2 * 1024 * 1024 - self.extraFormatArgs = [] def labelDevice(self, entry, chroot): devicePath = entry.device.setupDevice(chroot) |