#!/bin/sh
#
# $FreeBSD: ports/net/ser/files/ser.in,v 1.1 2007/08/15 18:35:05 sobomax Exp $
#

# PROVIDE: ser
# REQUIRE: DAEMON mysql postgresql
#
prefix=/usr/local

# 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"


syntax highlighted by Code2HTML, v. 0.9.1