blob: 71152d71a02689581241d2c1301974abd1c12e2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/sbin/runscript
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EXE=bird6
CLI=birdc6
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"
"/usr/sbin/${EXE}" -c "/etc/${EXE}.conf" -s "${SOCK}"
eend $? "Failed to start BIRD"
}
stop() {
ebegin "Stopping BIRD"
if [ -f "${SOCK}" ]; then
echo "down" | "/usr/sbin/${CLI}" -s "${SOCK}" &>/dev/null
eend $? "Failed to stop BIRD"
else
eend 0
fi
}
|