Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/stuntman/files/
Date: Thu, 26 Jan 2017 22:37:20
Message-Id: 1485470196.80f9e5739927f1714727f41036ba7e7ca6293fd9.soap@gentoo
1 commit: 80f9e5739927f1714727f41036ba7e7ca6293fd9
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Tue Jan 24 16:43:29 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 26 22:36:36 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80f9e573
7
8 net-misc/stuntman: remove unused file
9
10 Closes: https://github.com/gentoo/gentoo/pull/3628
11
12 net-misc/stuntman/files/initd.v1 | 21 ---------------------
13 1 file changed, 21 deletions(-)
14
15 diff --git a/net-misc/stuntman/files/initd.v1 b/net-misc/stuntman/files/initd.v1
16 deleted file mode 100644
17 index 732ca55..00000000
18 --- a/net-misc/stuntman/files/initd.v1
19 +++ /dev/null
20 @@ -1,21 +0,0 @@
21 -#!/sbin/openrc-run
22 -# Copyright 1999-2014 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -# $Id$
25 -
26 -depend() {
27 - need net
28 -}
29 -
30 -start() {
31 - ebegin "Starting STUNTMAN"
32 - start-stop-daemon --start --quiet --exec /usr/sbin/stunserver \
33 - --make-pidfile --pidfile=/run/stunserver.pid --background
34 - eend $?
35 -}
36 -
37 -stop() {
38 - ebegin "Stopping STUNTMAN"
39 - start-stop-daemon --stop --quiet --pidfile=/run/stunserver.pid
40 - eend $?
41 -}