summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRadek Vykydal <rvykydal@redhat.com>2009-05-13 15:30:27 +0200
committerRadek Vykydal <rvykydal@redhat.com>2009-05-15 09:53:43 +0200
commitc8f1322b336e434b380219a4935d1cc2e31d2ebf (patch)
treefa48a84a8261a0929a8a0386b79d4bf4ea0646a3
parent7316b263561cf6e40e733aea3482ef319baa52c6 (diff)
downloadanaconda-c8f1322b336e434b380219a4935d1cc2e31d2ebf.tar.gz
anaconda-c8f1322b336e434b380219a4935d1cc2e31d2ebf.tar.xz
anaconda-c8f1322b336e434b380219a4935d1cc2e31d2ebf.zip
Consider active-idle state of md device as accepatable status of device (#497407)
This should fix traceback met when we were updating sysfs path attribute of md device in active-idle state (empty string was returned as the device was not in state clean or active). I think it is a state very rarely met in our tests. According to md.txt, it is "like active, but no writes have been seen for a while". I prepared updates.img for testing, but we can't reproduce the bug.
-rw-r--r--storage/devices.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/devices.py b/storage/devices.py
index 29a9d0034..44dc878fc 100644
--- a/storage/devices.py
+++ b/storage/devices.py
@@ -2436,7 +2436,7 @@ class MDRaidArrayDevice(StorageDevice):
if os.access(state_file, os.R_OK):
state = open(state_file).read().strip()
log.debug("%s state is %s" % (self.name, state))
- if state in ("clean", "active"):
+ if state in ("clean", "active", "active-idle"):
status = True
return status