diff options
author | Ed Swierk <eswierk@skyportsystems.com> | 2015-06-03 08:08:37 -0700 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2015-07-20 07:16:26 -0400 |
commit | 19d2ceea61ec67efce6fa260d48d7cd99b192bf8 (patch) | |
tree | 4a317474e6f050ef4ef71c66280ae7073d800c65 | |
parent | udev: Bring back persistant storage symlinks for bcache (diff) | |
download | eudev-19d2ceea61ec67efce6fa260d48d7cd99b192bf8.tar.gz eudev-19d2ceea61ec67efce6fa260d48d7cd99b192bf8.tar.bz2 eudev-19d2ceea61ec67efce6fa260d48d7cd99b192bf8.zip |
Add /dev/xvd* to 60-persistent-storage whitelist Without this, systemd-udevd does not create persistent storage symlinks for xen block devices.
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
-rw-r--r-- | rules/60-persistent-storage.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/60-persistent-storage.rules b/rules/60-persistent-storage.rules index 2aa15f341..64c5f1cfd 100644 --- a/rules/60-persistent-storage.rules +++ b/rules/60-persistent-storage.rules @@ -6,7 +6,7 @@ ACTION=="remove", GOTO="persistent_storage_end" SUBSYSTEM!="block", GOTO="persistent_storage_end" -KERNEL!="loop*|mmcblk*[0-9]|msblk*[0-9]|mspblk*[0-9]|nvme*|sd*|sr*|vd*|bcache*", GOTO="persistent_storage_end" +KERNEL!="loop*|mmcblk*[0-9]|msblk*[0-9]|mspblk*[0-9]|nvme*|sd*|sr*|vd*|bcache*|xvd*", GOTO="persistent_storage_end" # ignore partitions that span the entire disk TEST=="whole_disk", GOTO="persistent_storage_end" |