summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
authorBrian C. Lane <bcl@redhat.com>2010-03-03 16:00:34 -0800
committerBrian C. Lane <bcl@redhat.com>2010-03-04 08:34:23 -0800
commit7a57848512333239672abe104bb3942821daddc0 (patch)
tree039ce419139e28abc10352b0a2159b04fbe0a5ef /kickstart.py
parent85981c6fcbfea5575a35605e47178a828f9e627d (diff)
downloadanaconda-7a57848512333239672abe104bb3942821daddc0.tar.gz
anaconda-7a57848512333239672abe104bb3942821daddc0.tar.xz
anaconda-7a57848512333239672abe104bb3942821daddc0.zip
Fixes bug #569373 - Change udev_trigger block calls to use change action
This fixes bug #569373, where exiting the filter screen would leave the /dev/dm-7 and /dev/dm-8 devices missing. It appears that device-mapper is removing the devices when udevadm trigger --action=add /class/block/dm-0 is run.
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kickstart.py b/kickstart.py
index 7a0092108..36908d0d3 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -1208,7 +1208,7 @@ def parseKickstart(anaconda, file):
ksparser = AnacondaKSParser(handler)
# We need this so all the /dev/disk/* stuff is set up before parsing.
- udev_trigger(subsystem="block")
+ udev_trigger(subsystem="block", action="change")
# So that drives onlined by these can be used in the ks file
storage.iscsi.iscsi().startup()
storage.fcoe.fcoe().startup()