mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
0cab341e1d
We already used Conflicts=shutdown target to stop LVM2 services on shutdown. But we still missed the ordering - the shutdown.target should be reached only after all the services are really stopped. Reported here: https://github.com/lvmteam/lvm2/issues/17
19 lines
575 B
SYSTEMD
19 lines
575 B
SYSTEMD
[Unit]
|
|
Description=Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling
|
|
Documentation=man:dmeventd(8) man:lvcreate(8) man:lvchange(8) man:vgchange(8)
|
|
Requires=dm-event.socket
|
|
After=dm-event.socket dm-event.service lvm2-activation.service
|
|
Before=local-fs-pre.target shutdown.target
|
|
DefaultDependencies=no
|
|
Conflicts=shutdown.target
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
Environment=LVM_SUPPRESS_LOCKING_FAILURE_MESSAGES=1
|
|
ExecStart=@SBINDIR@/lvm vgchange --monitor y
|
|
ExecStop=@SBINDIR@/lvm vgchange --monitor n
|
|
RemainAfterExit=yes
|
|
|
|
[Install]
|
|
WantedBy=sysinit.target
|