mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
cb82919b0d
We want most of our units to be started before any local/remote mount points are mounted - we used {local,remote}-fs.target for this purpose before, but it was not 100% correct as there's even {local,remote}-fs-pre.target special systemd unit reserved for this exact purpose. See also man 7 systemd.special and "local-fs-pre.target"/"remote-fs-pre.target" description.
18 lines
342 B
SYSTEMD
18 lines
342 B
SYSTEMD
[Unit]
|
|
Description=Clustered LVM mirror log daemon
|
|
Documentation=man:cmirrord(8)
|
|
Requires=corosync.service
|
|
After=corosync.service
|
|
Before=remote-fs-pre.target
|
|
DefaultDependencies=no
|
|
Conflicts=shutdown.target
|
|
|
|
[Service]
|
|
Type=forking
|
|
ExecStart=@sbindir@/cmirrord
|
|
PIDFile=@CMIRRORD_PIDFILE@
|
|
Restart=on-abort
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|