summaryrefslogtreecommitdiff
blob: 9a7c735bb503f1ebb17c8f3c18ab095f9ec8e5b6 (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
#!/sbin/openrc-run
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

DAEMON="/usr/bin/2ping"
PIDFILE="/run/2ping.pid"

depend() {
	need net
}

start() {
	ebegin "Starting 2ping server"
	start-stop-daemon --start \
		--background --make-pidfile \
		--pidfile "${PIDFILE}" \
		--exec "${DAEMON}" -- \
		--listen -q ${OPTS} \
		>/dev/null
	eend $?
}

stop() {
	ebegin "Stopping 2ping server"
	start-stop-daemon --stop --pidfile "${PIDFILE}"
	eend $?
}

restart() {
	ebegin "Restarting 2ping server"
	start-stop-daemon --stop --pidfile "${PIDFILE}"
	sleep 1
	start-stop-daemon --start --exec "${DAEMON}" --pidfile "${PIDFILE}"
	eend $?
}