diff options
author | Mike Fulbright <msf@redhat.com> | 2000-04-26 19:04:48 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2000-04-26 19:04:48 +0000 |
commit | 2995980370c80905ed574b3d9d2d35a7a5fa83cc (patch) | |
tree | b6c49b22e27d27b882caae88d0a4d0f9b926be88 /textw/partitioning_text.py | |
parent | 3d18429a3268d0483a2e43bf308413639c110c4b (diff) | |
download | anaconda-2995980370c80905ed574b3d9d2d35a7a5fa83cc.tar.gz anaconda-2995980370c80905ed574b3d9d2d35a7a5fa83cc.tar.xz anaconda-2995980370c80905ed574b3d9d2d35a7a5fa83cc.zip |
Added --bytes-per-inode option to ks part command
Diffstat (limited to 'textw/partitioning_text.py')
-rw-r--r-- | textw/partitioning_text.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/textw/partitioning_text.py b/textw/partitioning_text.py index 0b5b2b3a8..44e091579 100644 --- a/textw/partitioning_text.py +++ b/textw/partitioning_text.py @@ -121,6 +121,12 @@ class AutoPartitionWindow: todo.fstab.formatAllFilesystems() todo.instClass.addToSkipList("format") + + # configure kickstart requested ext2 filesystem options + if todo.instClass.partitions: + for (mntpoint, size, maxsize, grow, device, fsopts) in todo.instClass.partitions: + if fsopts != None: + todo.fstab.setfsOptions (mntpoint, fsopts) return (rc, choice) = ListboxChoiceWindow(screen, _("Automatic Partitioning"), |