aboutsummaryrefslogtreecommitdiff
path: root/net/ser/files/ser.in
blob: bf087c80310a32f3380efbeafab297937c3017cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/sh
#
# $FreeBSD$
#

# PROVIDE: ser
# REQUIRE: DAEMON mysql postgresql

# Add the following lines to /etc/rc.conf to enable ser:
#
# ser_enable="YES"

. %%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"