net-misc/bird-2.0.4
This commit is contained in:
parent
c55a0a6756
commit
eef413b7ff
40
net-misc/bird/files/initd-v4-bird-1.3.8
Normal file
40
net-misc/bird/files/initd-v4-bird-1.3.8
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
#!/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"
|
||||||
|
}
|
40
net-misc/bird/files/initd-v6-bird-1.3.8
Normal file
40
net-misc/bird/files/initd-v6-bird-1.3.8
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
#!/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"
|
||||||
|
}
|
Loading…
Reference in a new issue