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

33 lines
437 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: ser
# REQUIRE: DAEMON mysql postgresql
# Add the following lines to /etc/rc.conf to enable ser:
#
# ser_enable="YES"
. /etc/rc.subr
name="ser"
rcvar=`set_rcvar`
command="%%PREFIX%%/sbin/${name}"
pidfile="/var/run/${name}.pid"
command_args="-P ${pidfile} > /dev/null"
load_rc_config $name
: ${ser_enable="NO"}
stop_postcmd=stop_postcmd
stop_postcmd()
{
rm -f $pidfile
}
run_rc_command "$1"