summaryrefslogtreecommitdiffstats
path: root/fsset.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-12-19 16:45:18 +0000
committerMike Fulbright <msf@redhat.com>2001-12-19 16:45:18 +0000
commitb4cc639c702015a6d9687d639f4147f31b5dea41 (patch)
tree84d87fc9dee72a3d65bdf6b81aaf969bab43dafa /fsset.py
parent589ebe99921be607abb4e2a886de15bb364cafa8 (diff)
downloadanaconda-b4cc639c702015a6d9687d639f4147f31b5dea41.tar.gz
anaconda-b4cc639c702015a6d9687d639f4147f31b5dea41.tar.xz
anaconda-b4cc639c702015a6d9687d639f4147f31b5dea41.zip
this would really help support if we reported which partition is having the problem
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 54786ea85..cf8ed2042 100644
--- a/fsset.py
+++ b/fsset.py
@@ -1002,7 +1002,9 @@ class FileSystemSet:
if entry.fsystem.getName() != "ext2": continue
if entry.getFormat(): continue
- if isys.ext2IsDirty(entry.device.getDevice()): return 1
+ if isys.ext2IsDirty(entry.device.getDevice()):
+ log("%s is a dirty ext2 partition" % entry.device.getDevice())
+ return 1
return 0