summaryrefslogtreecommitdiffstats
path: root/storage/__init__.py
diff options
context:
space:
mode:
authorJoel Granados Moreno <jgranado@redhat.com>2009-05-28 11:25:47 +0200
committerJoel Granados Moreno <jgranado@redhat.com>2009-05-28 11:25:47 +0200
commit679ff6c4eb55ecb67ab6f3ed347829c1a73a7259 (patch)
tree9476d366e595ccaef5f4322c1e2ec17bd19df4bf /storage/__init__.py
parent3fb01b1845bfa5aafda6a3387342a4b2c7d84de8 (diff)
downloadanaconda-679ff6c4eb55ecb67ab6f3ed347829c1a73a7259.tar.gz
anaconda-679ff6c4eb55ecb67ab6f3ed347829c1a73a7259.tar.xz
anaconda-679ff6c4eb55ecb67ab6f3ed347829c1a73a7259.zip
Limit the trigger to block type devices.
When calling udev_trigger for the save exception to local storage device, limit the call to block devices.
Diffstat (limited to 'storage/__init__.py')
-rw-r--r--storage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/__init__.py b/storage/__init__.py
index 7952645ab..ab636b9ca 100644
--- a/storage/__init__.py
+++ b/storage/__init__.py
@@ -469,7 +469,7 @@ class Storage(object):
"""
# When a usb is connected from before the start of the installation,
# it is not correctly detected.
- udev.udev_trigger()
+ udev.udev_trigger(subsystem="block")
self.reset()
dests = []