diff options
author | Mike Fulbright <msf@redhat.com> | 2001-12-19 16:45:18 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-12-19 16:45:18 +0000 |
commit | b4cc639c702015a6d9687d639f4147f31b5dea41 (patch) | |
tree | 84d87fc9dee72a3d65bdf6b81aaf969bab43dafa | |
parent | 589ebe99921be607abb4e2a886de15bb364cafa8 (diff) | |
download | anaconda-b4cc639c702015a6d9687d639f4147f31b5dea41.tar.gz anaconda-b4cc639c702015a6d9687d639f4147f31b5dea41.tar.xz anaconda-b4cc639c702015a6d9687d639f4147f31b5dea41.zip |
this would really help support if we reported which partition is having the problem
-rw-r--r-- | fsset.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |