mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
29 lines
714 B
Bash
29 lines
714 B
Bash
#!/bin/sh
|
|
#
|
|
|
|
# PROVIDE: munin-node
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: cron
|
|
# KEYWORD: FreeBSD
|
|
|
|
#
|
|
# Add the following lines to /etc/rc.conf to enable munin-node:
|
|
# munin_node_enable (bool): Set to "NO" by default.
|
|
# Set it to "YES" to enable munin-node
|
|
# munin_node_config (path): Set to "%PREFIX%/etc/munin/munin-node.conf" by default.
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="munin_node"
|
|
rcvar=`set_rcvar`
|
|
|
|
[ -z "$munin_node_enable" ] && munin_node_enable="NO"
|
|
[ -z "$munin_node_config" ] && munin_node_config="/usr/local/etc/munin/munin-node.conf"
|
|
|
|
command="/usr/local/sbin/munin-node"
|
|
pidfile=`awk '$1 == "pid_file" { print $2 }' $munin_node_config`
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|