diff options
Diffstat (limited to 'net-misc/apt-cacher-ng/files/initd')
-rw-r--r-- | net-misc/apt-cacher-ng/files/initd | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/net-misc/apt-cacher-ng/files/initd b/net-misc/apt-cacher-ng/files/initd new file mode 100644 index 000000000000..7718da4dae8c --- /dev/null +++ b/net-misc/apt-cacher-ng/files/initd @@ -0,0 +1,33 @@ +#!/sbin/runscript +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +NAME="apt-cacher-ng" +DAEMON="/usr/sbin/$NAME" +RUNDIR="/var/run/$NAME" +PIDFILE="$RUNDIR/$NAME.pid" +SOCKETFILE="$RUNDIR/$NAME.socket" +DAEMON_OPTS="$DAEMON_OPTS pidfile=$PIDFILE SocketPath=$SOCKETFILE foreground=0" + +depend() { + use net +} + +start() { + ebegin "Starting $NAME" + checkpath -d -m 0755 -o ${NAME}:${NAME} ${RUNDIR} + start-stop-daemon --start --exec $DAEMON \ + --user $NAME --group $NAME \ + --pidfile $PIDFILE \ + -- $DAEMON_OPTS + eend $? +} + +stop() { + ebegin "Stopping $NAME" + start-stop-daemon --stop --retry 15 --exec $DAEMON \ + --pidfile $PIDFILE + rm -f $PIDFILE + eend $? +} |