summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2017-01-24 17:43:29 +0100
committerDavid Seifert <soap@gentoo.org>2017-01-26 23:36:36 +0100
commit80f9e5739927f1714727f41036ba7e7ca6293fd9 (patch)
treef6c3855a8dad98e5f5a1cba8be172d0617efa384 /net-misc/stuntman
parentnet-misc/dahdi-tools: remove unused file (diff)
downloadgentoo-80f9e5739927f1714727f41036ba7e7ca6293fd9.tar.gz
gentoo-80f9e5739927f1714727f41036ba7e7ca6293fd9.tar.bz2
gentoo-80f9e5739927f1714727f41036ba7e7ca6293fd9.zip
net-misc/stuntman: remove unused file
Closes: https://github.com/gentoo/gentoo/pull/3628
Diffstat (limited to 'net-misc/stuntman')
-rw-r--r--net-misc/stuntman/files/initd.v121
1 files changed, 0 insertions, 21 deletions
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 $?
-}