summaryrefslogtreecommitdiff
path: root/net-libs/tox/files/initd
blob: 49880897a1a0b52a794fc240fb8a1a74b468226e (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
#!/sbin/openrc-run

PIDDIR=/run/tox-bootstrapd
PIDFILE="${PIDDIR}"/tox-bootstrapd.pid
KEYSDIR=/var/lib/tox-bootstrapd
TOX_USER=tox
TOX_GROUP=tox

depend() {
	need net
}

start() {
	ebegin "Starting tox-dht-bootstrap daemon"

	checkpath -d -q -o "${TOX_USER}":"${TOX_GROUP}" "${PIDDIR}"
	checkpath -d -q -o "${TOX_USER}":"${TOX_GROUP}" "${KEYSDIR}"

	start-stop-daemon --start \
		--pidfile "${PIDFILE}" \
		--user="${TOX_USER}" --group="${TOX_GROUP}" \
		--exec /usr/bin/tox-bootstrapd -- --config /etc/tox-bootstrapd.conf

	eend $?
}

stop() {
	ebegin "Stopping tox-dht-bootstrap daemon"

	start-stop-daemon --stop \
		--pidfile "${PIDFILE}"

	eend $?
}