summaryrefslogtreecommitdiffstats
path: root/todo.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-08-20 23:28:27 +0000
committerMatt Wilson <msw@redhat.com>1999-08-20 23:28:27 +0000
commitefe6ad6ccac4cbc1514281846edc42a22ec354ae (patch)
treece6b994f1689d9a58d9dc611aa0b0d997761f989 /todo.py
parent6da7590ad703765e19496edad56e1517133edbd9 (diff)
downloadanaconda-efe6ad6ccac4cbc1514281846edc42a22ec354ae.tar.gz
anaconda-efe6ad6ccac4cbc1514281846edc42a22ec354ae.tar.xz
anaconda-efe6ad6ccac4cbc1514281846edc42a22ec354ae.zip
only pull in fstab
Diffstat (limited to 'todo.py')
-rw-r--r--todo.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/todo.py b/todo.py
index b0693965c..e872a3484 100644
--- a/todo.py
+++ b/todo.py
@@ -496,7 +496,8 @@ class ToDo:
fstab = {}
for line in lines:
fields = string.split (line)
- if fields and fields[2] == "ext2" or fields[2] == "swap":
+ if fields and fields[2] == "ext2" or fields[2] == "swap" \
+ and fields[3] == "defaults":
fstab[fields[1]] = (fields[0][5:], fields[2], 0)
return fstab