summaryrefslogtreecommitdiff
path: root/net/tor/files/tor.in
blob: 6165b2aeb242f21ce4390a0f1f47678c6b103f1a (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!@RCD_SCRIPTS_SHELL@
#
# $NetBSD: tor.in,v 1.5 2015/12/11 12:13:00 wiz Exp $
#
# PROVIDE: tor
# REQUIRE: DAEMON NETWORKING
# KEYWORD: shutdown
#
# You will need to set some variables in /etc/rc.conf to start tor:
#
# tor=YES

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

name="tor"
rcvar=$name
command="@PREFIX@/bin/tor"
required_files="@PKG_SYSCONFDIR@/torrc"
start_cmd="tor_start"
stop_cmd="tor_stop"
pidfile="@PKG_HOME@/${name}.pid"
restart_cmd="tor_stop ; tor_start"
extra_commands="reload"

tor_start ()
{
	${command} --User @TOR_USER@ --RunAsDaemon 1 \
		--DataDirectory @PKG_HOME@ --PIDFile ${pidfile}
}

tor_stop()
{
	kill `cat ${pidfile}` 2>/dev/null
}

if [ -f /etc/rc.subr -a -f /etc/rc.conf -a -d /etc/rc.d -a -f /etc/rc.d/DAEMON ]
then
	load_rc_config $name
	run_rc_command "$1"
else
	eval ${start_cmd}
fi