diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-10 01:32:17 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-10 01:32:17 +0000 |
commit | 84dcb51e4b5ab53f255c4769d3a728a60fb2064a (patch) | |
tree | 2f3745aefb7a5d7187f76de1a913ffd13169aada | |
parent | af708f70ae6c1e69653b01f5868f379b3affd7b8 (diff) | |
download | anaconda-84dcb51e4b5ab53f255c4769d3a728a60fb2064a.tar.gz anaconda-84dcb51e4b5ab53f255c4769d3a728a60fb2064a.tar.xz anaconda-84dcb51e4b5ab53f255c4769d3a728a60fb2064a.zip |
don't add /dev to md devices in fstab
-rw-r--r-- | iw/rootpartition.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/rootpartition.py b/iw/rootpartition.py index 5330986c9..9545d7a4f 100644 --- a/iw/rootpartition.py +++ b/iw/rootpartition.py @@ -51,7 +51,7 @@ class PartitionWindow (InstallWindow): print "raid", raid for (mount, device, other) in raid: - self.todo.addMount("/dev/" + device, mount, "ext2") + self.todo.addMount(device, mount, "ext2") print "self.todo.mounts", self.todo.mounts |