ports/net/ss5/files/ss5.in
Doug Barton 1d6b4b3f91 Begin the process of deprecating sysutils/rc_subr by
s#. %%RC_SUBR%%#. /etc/rc.subr#
2010-03-27 00:15:24 +00:00

25 lines
396 B
Bash

#!/bin/sh
# PROVIDE: ss5
# REQUIRE: LOGIN
#
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# ss5_enable (bool): Set to NO by default.
# Set it to YES to enable ss5.
#
. /etc/rc.subr
name="ss5"
rcvar=${name}_enable
command=%%PREFIX%%/sbin/${name}
load_rc_config $name
: ${ss5_enable="NO"}
: ${ss5_flags="-t"}
run_rc_command "$1"