aboutsummaryrefslogtreecommitdiff
path: root/www/openacs/files/openacs.in
blob: 1960dadfd8127b68f83beb7cac97d14c8405fa8f (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#! /bin/sh
#
#
# PROVIDE: openacs
# REQUIRE: DAEMON NETWORKING SERVERS
#
# Add the following line to /etc/rc.conf to enable openacs:
#
# openacs_enable="YES"
#
# Tweakable parameters for users to override in rc.conf

. /etc/rc.subr

name=openacs

load_rc_config ${name}
: ${openacs_enable="NO"}
: ${openacs_user="%%OPENACS_USER%%"}
: ${openacs_group="%%OPENACS_GROUP%%"}
: ${openacs_conf=%%OPENACSBASE%%/etc/openacs-config.tcl}
: ${openacs_flags="-u ${openacs_user} -g ${openacs_group}"}
: ${openacs_prog=%%AOLSERVERBASE%%/bin/nsd}
: ${openacs_pidfile=/var/run/openacs.pid}

rcvar=`set_rcvar`
pidfile=${openacs_pidfile}
start_postcmd="start_postcmd"
stop_postcmd="stop_postcmd"
required_files=${openacs_conf}
command=%%AOLSERVERBASE%%/bin/nsd
command_args="-t ${openacs_conf}"
procname=${openacs_prog}

start_postcmd()
{
	PID=`pgrep -U ${openacs_user} -f ${openacs_conf}`
	[ -n "${PID}" ] && echo ${PID} > ${pidfile}
}

stop_postcmd()
{
	[ -f "${pidfile}" ] && rm ${pidfile}
}

run_rc_command "$1"