blob: aa2f6ea006d6f98615ec100e3d9ef437d721f652 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
Starting the daemon on boot
---------------------------
You may wish to add these lines to /etc/rc.d/rc.local to start the service:
if [ -x /etc/rc.d/rc.wdmd ]; then
/etc/rc.d/rc.wdmd start
fi
if [ -x /etc/rc.d/rc.sanlock ]; then
/etc/rc.d/rc.sanlock start
fi
You may also add these lines to /etc/rc.d/rc.local_shutdown:
if [ -x /etc/rc.d/rc.sanlock ]; then
/etc/rc.d/rc.sanlock stop
fi
if [ -x /etc/rc.d/rc.wdmd ]; then
/etc/rc.d/rc.wdmd stop
fi
Remember to give executable permission to /etc/rc.d/rc.local_shutdown:
chmod 0755 /etc/rc.d/rc.local_shutdown
|