From: Michael Mair-Keimberger (asterix) Date: Tue, 24 Jan 2017 16:43:29 +0000 (+0100) Subject: net-misc/stuntman: remove unused file X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=80f9e5739927f1714727f41036ba7e7ca6293fd9;p=gentoo.git net-misc/stuntman: remove unused file Closes: https://github.com/gentoo/gentoo/pull/3628 --- diff --git a/net-misc/stuntman/files/initd.v1 b/net-misc/stuntman/files/initd.v1 deleted file mode 100644 index 732ca5594555..000000000000 --- a/net-misc/stuntman/files/initd.v1 +++ /dev/null @@ -1,21 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -depend() { - need net -} - -start() { - ebegin "Starting STUNTMAN" - start-stop-daemon --start --quiet --exec /usr/sbin/stunserver \ - --make-pidfile --pidfile=/run/stunserver.pid --background - eend $? -} - -stop() { - ebegin "Stopping STUNTMAN" - start-stop-daemon --stop --quiet --pidfile=/run/stunserver.pid - eend $? -}