summaryrefslogtreecommitdiffstats
path: root/fstab.py
diff options
context:
space:
mode:
authorpbrown <pbrown>2000-02-17 21:50:28 +0000
committerpbrown <pbrown>2000-02-17 21:50:28 +0000
commit3cc156c3ca73d00f1110deb46cdb3a5d85d0f665 (patch)
tree846c91177892ce79f9ba546ca45d3cc8de708618 /fstab.py
parent3126b588a01aea42a8bed2650fdf7836154d6b5d (diff)
downloadanaconda-3cc156c3ca73d00f1110deb46cdb3a5d85d0f665.tar.gz
anaconda-3cc156c3ca73d00f1110deb46cdb3a5d85d0f665.tar.xz
anaconda-3cc156c3ca73d00f1110deb46cdb3a5d85d0f665.zip
change floppy filesystem type to 'auto'. We now have /etc/filesystems.
Diffstat (limited to 'fstab.py')
-rw-r--r--fstab.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fstab.py b/fstab.py
index b39a57d3c..7823d31df 100644
--- a/fstab.py
+++ b/fstab.py
@@ -490,7 +490,7 @@ class Fstab:
f.write (format % ( '/dev/' + dev, mntpoint, fs, 'noauto,owner', 0, 0))
else:
f.write (format % ( '/dev/' + dev, mntpoint, fs, 'defaults', 0, 0))
- f.write (format % (fdDevice, "/mnt/floppy", 'ext2', 'noauto,owner', 0, 0))
+ f.write (format % (fdDevice, "/mnt/floppy", 'auto', 'noauto,owner', 0, 0))
f.write (format % ("none", "/proc", 'proc', 'defaults', 0, 0))
f.write (format % ("none", "/dev/pts", 'devpts', 'gid=5,mode=620', 0, 0))