freebsd-ports/net/linknx/files/linknx.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

58 lines
1.2 KiB
Bash

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: linknx
# REQUIRE: DAEMON
#
# linknx_enable (bool): Set to "NO" by default. Set it
# to "YES" to enable linknx.
#
# linknx_console (str): The output of the daemon goes to this
# file. It is set to "/var/log/linknx.log"
# by default. Set it to "" to disable it.
# Recommended for production use.
#
# linknx_config (str): The default configuration file. By default
# there is no configuration file set.
#
. /etc/rc.subr
name="linknx"
rcvar=`set_rcvar`
start_precmd="linknx_precmd"
: ${linknx_enable:="NO"}
: ${linknx_console:="/var/log/linknx.log"}
: ${linknx_config:=""}
: ${linknx_pidfile:="/var/run/linknx.pid"}
: ${linknx_flags:="--pid-file=${linknx_pidfile}"}
command="/usr/local/bin/$name"
pidfile=${linknx_pidfile}
load_rc_config "$name"
linknx_precmd()
{
if [ -f "${linknx_console}" ]; then
echo "----------------" `date` "----------------" >> ${linknx_console}
fi
}
if [ "x${linknx_console}" != "x" ]; then
linknx_flags="${linknx_flags} --daemon=${linknx_console}"
else
linknx_flags="${linknx_flags} --daemon"
fi
if [ "x${linknx_config}" != "x" ]; then
linknx_flags="${linknx_flags} --config=${linknx_config}"
fi
run_rc_command "$1"