summaryrefslogtreecommitdiff
path: root/www/thy/files/thy.sh
blob: fc5a47d0778acb5edaf152c7ccb795955fd4a4cc (plain)
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
#!@RCD_SCRIPTS_SHELL@
#
# $NetBSD: thy.sh,v 1.1.1.1 2004/04/01 05:19:03 xtraeme Exp $
#
# PROVIDE: thy
# REQUIRE: DAEMON

if [ -f /etc/rc.subr ]; then
	. /etc/rc.subr
fi

if [ -f @PKG_SYSCONFDIR@/thyrc ]; then
	. @PKG_SYSCONFDIR@/thyrc
fi

name="thy"
rcvar=${name}
command="@PREFIX@/sbin/${name}"
command_args=${THY_OPTIONS}
pidfile=${THY_PIDFILE:-/var/run/thy.pid}
stop_postcmd="rm -f ${pidfile}"

if [ -f /etc/rc.subr ]; then
	load_rc_config ${name}
	run_rc_command "$1"
else
	@ECHO@ -n " ${name}"
	eval ${command} ${command_args}
fi