summaryrefslogtreecommitdiffstats
path: root/udev
diff options
context:
space:
mode:
authorPeter Rajnoha <prajnoha@redhat.com>2012-06-27 09:35:11 -0400
committerPeter Rajnoha <prajnoha@redhat.com>2012-06-28 09:44:03 -0400
commitd2df8dddc8c04973a3e23b7a19e9bfbf8c45f79e (patch)
tree7bcca97a3e58c468df6de63e1bb941e844ca27bd /udev
parent215a314f195ea4af5265e37999502462fcf2a341 (diff)
downloadlvm2-d2df8dddc8c04973a3e23b7a19e9bfbf8c45f79e.tar.gz
lvm2-d2df8dddc8c04973a3e23b7a19e9bfbf8c45f79e.tar.xz
lvm2-d2df8dddc8c04973a3e23b7a19e9bfbf8c45f79e.zip
pvscan: add --activate ay option (autoactivate)
Define auto_activation_handler that activates VGs/LVs automatically based on the activation/auto_activation_volume_list (activating all volumes by default if the list is not defined). The autoactivation is done within the pvscan call in 69-dm-lvmetad.rules that watches for udev events (device appearance/removal). For now, this works for non-clustered and complete VGs only.
Diffstat (limited to 'udev')
-rw-r--r--udev/69-dm-lvm-metad.rules.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/udev/69-dm-lvm-metad.rules.in b/udev/69-dm-lvm-metad.rules.in
index 26309deb..706c03b4 100644
--- a/udev/69-dm-lvm-metad.rules.in
+++ b/udev/69-dm-lvm-metad.rules.in
@@ -21,6 +21,6 @@ SUBSYSTEM!="block", GOTO="lvm_end"
KERNEL=="dm-[0-9]*", ENV{DM_UDEV_RULES_VSN}!="?*", GOTO="lvm_end"
# Only process devices already marked as a PV - this requires blkid to be called before.
-ENV{ID_FS_TYPE}=="LVM2_member|LVM1_member", RUN+="(LVM_EXEC)/lvm pvscan --cache --major $major --minor $minor"
+ENV{ID_FS_TYPE}=="LVM2_member|LVM1_member", RUN+="(LVM_EXEC)/lvm pvscan --cache --activate ay --major $major --minor $minor"
LABEL="lvm_end"