/lib/systemd/system/sbd_remote.service is in sbd 1.3.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | [Unit]
Description=Shared-storage based fencing daemon on pacemaker remote node
After=systemd-modules-load.service iscsi.service
PartOf=pacemaker_remote.service
RefuseManualStop=true
RefuseManualStart=true
[Service]
Type=forking
PIDFile=/var/run/sbd.pid
EnvironmentFile=-/etc/default/sbd
ExecStart=/usr/sbin/sbd $SBD_OPTS -p /var/run/sbd.pid watch
ExecStop=/bin/kill -TERM $MAINPID
# Could this benefit from exit codes for restart?
# Does this need to be set to msgwait * 1.2?
# TimeoutSec=
# If SBD crashes, it'll very likely suicide immediately due to the
# hardware watchdog. But one can always try.
Restart=on-abort
[Install]
RequiredBy=pacemaker_remote.service
|