forked from Lainports/freebsd-ports
25 lines
372 B
Bash
25 lines
372 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: mesgd
|
|
# REQUIRE: DAEMON
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Add the following line to /etc/rc.conf to enable mesgd:
|
|
#
|
|
# mesgd_enable=(bool): Set it to "YES" to enable mesgd
|
|
#
|
|
# and add appropriate mesgd_flags.
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="mesgd"
|
|
rcvar=mesgd_enable
|
|
|
|
load_rc_config $name
|
|
|
|
: ${mesgd_enable="NO"}
|
|
|
|
command=%%PREFIX%%/sbin/${name}
|
|
|
|
run_rc_command "$1"
|