From b4cc639c702015a6d9687d639f4147f31b5dea41 Mon Sep 17 00:00:00 2001 From: Mike Fulbright Date: Wed, 19 Dec 2001 16:45:18 +0000 Subject: this would really help support if we reported which partition is having the problem --- fsset.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -- cgit