commit:     f16e25677d8f3c0a90a5927f837d3520bae25d39
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Mon Jun 22 18:11:19 2020 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Jun 25 07:30:40 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f16e2567

net-misc/bird: remove unused patches

Closes: https://github.com/gentoo/gentoo/pull/16375
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 net-misc/bird/files/initd-v4-bird-1.3.8 | 40 ---------------------------------
 net-misc/bird/files/initd-v6-bird-1.3.8 | 40 ---------------------------------
 2 files changed, 80 deletions(-)

diff --git a/net-misc/bird/files/initd-v4-bird-1.3.8 
b/net-misc/bird/files/initd-v4-bird-1.3.8
deleted file mode 100644
index c7c6a0b63af..00000000000
--- a/net-misc/bird/files/initd-v4-bird-1.3.8
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-extra_started_commands="reload"
-
-EXE=bird
-SOCK="/var/run/${EXE}.ctl"
-
-depend() {
-       need net
-       use logger
-}
-
-checkconfig() {
-       if [ ! -f "/etc/${EXE}.conf" ]; then
-               eerror "Please create /etc/${EXE}.conf"
-               return 1
-       fi
-       return 0
-}
-
-start() {
-       checkconfig || return $?
-       ebegin "Starting BIRD"
-       start-stop-daemon --start --exec /usr/sbin/${EXE} -- -c 
"/etc/${EXE}.conf" -s "${SOCK}"
-       eend $? "Failed to start BIRD"
-}
-
-stop() {
-       ebegin "Stopping BIRD"
-       start-stop-daemon --stop --exec /usr/sbin/${EXE}
-       eend $? "Failed to stop BIRD"
-}
-
-reload() {
-       ebegin "Reloading BIRD"
-       start-stop-daemon --stop --signal HUP --oknodo --exec /usr/sbin/${EXE}
-       eend $? "Failed to reload BIRD"
-}

diff --git a/net-misc/bird/files/initd-v6-bird-1.3.8 
b/net-misc/bird/files/initd-v6-bird-1.3.8
deleted file mode 100644
index 94ba4426e5d..00000000000
--- a/net-misc/bird/files/initd-v6-bird-1.3.8
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-extra_started_commands="reload"
-
-EXE=bird6
-SOCK="/var/run/${EXE}.ctl"
-
-depend() {
-       need net
-       use logger
-}
-
-checkconfig() {
-       if [ ! -f "/etc/${EXE}.conf" ]; then
-               eerror "Please create /etc/${EXE}.conf"
-               return 1
-       fi
-       return 0
-}
-
-start() {
-       checkconfig || return $?
-       ebegin "Starting BIRD"
-       start-stop-daemon --start --exec /usr/sbin/${EXE} -- -c 
"/etc/${EXE}.conf" -s "${SOCK}"
-       eend $? "Failed to start BIRD"
-}
-
-stop() {
-       ebegin "Stopping BIRD"
-       start-stop-daemon --stop --exec /usr/sbin/${EXE}
-       eend $? "Failed to stop BIRD"
-}
-
-reload() {
-       ebegin "Reloading BIRD"
-       start-stop-daemon --stop --signal HUP --oknodo --exec /usr/sbin/${EXE}
-       eend $? "Failed to reload BIRD"
-}

Reply via email to