mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
666738d57a
When lvm2-pvscan@.service and lvm2-lvmetad.service are scheduled to be stopped lvm2-pvscan@.service should be stopped first since pvscan uses lvmetad. This is especially important if lvm2-lvmetad.socket is also scheduled to be stopped as in this case connection requests are suppressed causing pvscan to fail.
16 lines
390 B
SYSTEMD
16 lines
390 B
SYSTEMD
[Unit]
|
|
Description=LVM2 PV scan on device %i
|
|
Documentation=man:pvscan(8)
|
|
DefaultDependencies=no
|
|
BindsTo=dev-block-%i.device
|
|
Requires=lvm2-lvmetad.socket
|
|
After=lvm2-lvmetad.socket lvm2-lvmetad.service
|
|
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
|