From 84dcb51e4b5ab53f255c4769d3a728a60fb2064a Mon Sep 17 00:00:00 2001 From: Matt Wilson Date: Fri, 10 Sep 1999 01:32:17 +0000 Subject: don't add /dev to md devices in fstab --- iw/rootpartition.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit