blob: a5dccb6b34a4cdbe13cf7949d59afc5dd9394f49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
README.SLACKWARE for munin-node
To start munin-node at boot, add the following to /etc/rc.d/rc.local:
if [ -x /etc/rc.d/rc.munin-node ]; then
/etc/rc.d/rc.munin-node start
fi
This goes in /etc/rc.d/rc.local_shutdown:
if [ -x /etc/rc.d/rc.munin-node ]; then
/etc/rc.d/rc.munin-node stop
fi
|