diff options
author | Jeremy Katz <katzj@redhat.com> | 2009-01-19 13:09:08 -0500 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2009-01-19 13:38:05 -0500 |
commit | d6c57672439d9393d06dfb20870fd6429d749d95 (patch) | |
tree | 716cd6a49eee3f0c5e977238297ea9d2d513e824 | |
parent | 7033602601e116d5d4282d1d339aaad2eea26796 (diff) | |
download | anaconda-d6c57672439d9393d06dfb20870fd6429d749d95.tar.gz anaconda-d6c57672439d9393d06dfb20870fd6429d749d95.tar.xz anaconda-d6c57672439d9393d06dfb20870fd6429d749d95.zip |
Default / to be ext4
-rw-r--r-- | installclass.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installclass.py b/installclass.py index c36e9e9bf..778a6eca8 100644 --- a/installclass.py +++ b/installclass.py @@ -190,7 +190,7 @@ class BaseInstallClass(object): def setDefaultPartitioning(self, partitions, clear = CLEARPART_TYPE_LINUX, doClear = 1, useLVM = True): - autorequests = [ ("/", None, 1024, None, 1, 1, 1) ] + autorequests = [ ("/", "ext4", 1024, None, 1, 1, 1) ] bootreq = getAutopartitionBoot(partitions) if bootreq: |