blob: 50ff312db37e668312da3fbbd5037b38b7e1e368 (
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
27
28
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: cf-monitord
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Add the following line to /etc/rc.conf[.local] to enable cf-monitord(8)
#
# cf_monitord_enable (bool): Set to "NO" by default.
# Set it to "YES" to enable cf-monitord.
# cf_monitord_flags (str): Custom additional arguments to be passed
# to cf-monitord (default empty).
#
. /etc/rc.subr
name="cf_monitord"
rcvar=cf_monitord_enable
command="%%PREFIX%%/bin/cf-monitord"
load_rc_config $name
: ${cf_monitord_enable="NO"}
run_rc_command "$1"
|