You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-analyzer/2ping/files/2pingd

37 lines
698 B

#!/sbin/runscript
# 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 $?
}