summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2020-06-22 20:11:19 +0200
committerConrad Kostecki <conikost@gentoo.org>2020-06-25 09:30:40 +0200
commitf16e25677d8f3c0a90a5927f837d3520bae25d39 (patch)
tree31fc4232bc08995995884e9849ff05547e3cf66e /net-misc
parentsys-apps/dbus: remove unused file (diff)
downloadgentoo-f16e25677d8f3c0a90a5927f837d3520bae25d39.tar.gz
gentoo-f16e25677d8f3c0a90a5927f837d3520bae25d39.tar.bz2
gentoo-f16e25677d8f3c0a90a5927f837d3520bae25d39.zip
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@gmail.com> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/bird/files/initd-v4-bird-1.3.840
-rw-r--r--net-misc/bird/files/initd-v6-bird-1.3.840
2 files changed, 0 insertions, 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 c7c6a0b63af7..000000000000
--- 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 94ba4426e5dd..000000000000
--- 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"
-}