mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
05f23e7763
The iscsi-shutdown.service is the one responsible for logging out iscsi sessions so blk-availability.service (running the blkdeactivate script) should be run before that on shutdown (so we need to use After=iscsi-shutdown.service because "After" relates to starting the service and the opposite order is automatically applied on stopping the service at shutdown).
15 lines
364 B
SYSTEMD
15 lines
364 B
SYSTEMD
[Unit]
|
|
Description=Availability of block devices
|
|
After=lvm2-activation.service lvm2-lvmetad.service iscsi-shutdown.service iscsi.service iscsid.service fcoe.service
|
|
DefaultDependencies=no
|
|
Conflicts=shutdown.target
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
ExecStart=/usr/bin/true
|
|
ExecStop=@sbindir@/blkdeactivate -u -l wholevg
|
|
RemainAfterExit=yes
|
|
|
|
[Install]
|
|
WantedBy=sysinit.target
|