diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-02-26 06:06:14 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-02-26 06:06:14 +0000 |
commit | f9a24853534909e144fbae9fe878579ca3b6a405 (patch) | |
tree | 17eaa1e4ab190fb147368dfc5b63ef64e5d1aa19 /fsset.py | |
parent | 26b0210a2e45ab4ad7ec6382f0eda961b0d7fe6d (diff) | |
download | anaconda-f9a24853534909e144fbae9fe878579ca3b6a405.tar.gz anaconda-f9a24853534909e144fbae9fe878579ca3b6a405.tar.xz anaconda-f9a24853534909e144fbae9fe878579ca3b6a405.zip |
merge from branch
Diffstat (limited to 'fsset.py')
-rw-r--r-- | fsset.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1760,8 +1760,9 @@ def getFStoTry(device): rc.append("xfs") if isValidExt2(device): + if isys.ext2HasJournal(device): + rc.append("ext3") rc.append("ext2") - rc.append("ext3") # XXX check for reiserfs signature, jfs signature, and others ? return rc |