mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
4b5d6de86b
The pvscan systemd service for autoactivation was mistakenly dropped along with the lvmetad related services. The activation generator program now looks at the new lvm.conf setting "event_activation" (default 1) to switch between event activation and direct activation. Previously, the old use_lvmetad setting was used to switch between event and direct activation.
15 lines
343 B
SYSTEMD
15 lines
343 B
SYSTEMD
[Unit]
|
|
Description=LVM event activation on device %i
|
|
Documentation=man:pvscan(8)
|
|
DefaultDependencies=no
|
|
StartLimitInterval=0
|
|
BindsTo=dev-block-%i.device
|
|
Before=shutdown.target
|
|
Conflicts=shutdown.target
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
RemainAfterExit=yes
|
|
ExecStart=@SBINDIR@/lvm pvscan --cache --activate ay %i
|
|
ExecStop=@SBINDIR@/lvm pvscan --cache %i
|