mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
c2d7d97301
Restart lvmetad automatically if it exits due to reception of uncaught signal, leaving a track in systemd log/syslog.
19 lines
366 B
SYSTEMD
19 lines
366 B
SYSTEMD
[Unit]
|
|
Description=LVM2 metadata daemon
|
|
Requires=lvm2-lvmetad.socket
|
|
After=lvm2-lvmetad.socket
|
|
DefaultDependencies=no
|
|
Conflicts=shutdown.target
|
|
|
|
[Service]
|
|
Type=forking
|
|
NonBlocking=true
|
|
ExecStart=@sbindir@/lvmetad
|
|
ExecStartPost=@sbindir@/vgscan
|
|
ExecReload=@sbindir@/lvmetad -R
|
|
Restart=on-abort
|
|
PIDFile=@DEFAULT_RUN_DIR@/lvmetad.pid
|
|
|
|
[Install]
|
|
WantedBy=sysinit.target
|