summaryrefslogtreecommitdiffstats
path: root/fsset.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2008-02-12 15:20:24 -0500
committerJeremy Katz <katzj@redhat.com>2008-02-12 15:20:24 -0500
commit62ac419cecb7873bb3678ca8d5370791cadd9b7e (patch)
tree6f9536fa520cc8686d09a79cc4aab66d82be466b /fsset.py
parent256fbb0db854a30a51fd559d1622ccbc4c87164a (diff)
downloadanaconda-62ac419cecb7873bb3678ca8d5370791cadd9b7e.tar.gz
anaconda-62ac419cecb7873bb3678ca8d5370791cadd9b7e.tar.xz
anaconda-62ac419cecb7873bb3678ca8d5370791cadd9b7e.zip
Fix silly thinko in Eric's patch
Diffstat (limited to 'fsset.py')
-rw-r--r--fsset.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/fsset.py b/fsset.py
index b36bd13f0..982fa7894 100644
--- a/fsset.py
+++ b/fsset.py
@@ -211,6 +211,8 @@ class FileSystemType:
if flags.selinux:
ret = isys.resetFileContext(mountpoint, instroot)
log.info("set SELinux context for mountpoint %s to %s" %(mountpoint, ret))
+ log.debug("mounting %s on %s/%s as %s" %(device, instroot,
+ mountpoint, self.getName()))
isys.mount(device, "%s/%s" %(instroot, mountpoint),
fstype = self.getName(),
readOnly = readOnly, bindMount = bindMount)
@@ -716,7 +718,7 @@ class ext3FileSystem(extFileSystem):
if not entry.fsystem or not entry.origfsystem:
raise RuntimeError, ("Trying to migrate fs w/o fsystem or "
"origfsystem set")
- if entry.fsystem.getName() != "ext3":
+ if entry.fsystem.getName() != "ext4dev":
raise RuntimeError, ("Trying to migrate ext3 to something other "
"than ext4")