summaryrefslogtreecommitdiffstats
path: root/main/quagga/zebra.initd
blob: df817540cfe26bedde862bb6f100336618b22866 (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
40
41
42
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/files/zebra.init,v 1.2 2007/02/25 09:57:18 mrness Exp $

depend() {
	need net
	after firewall
}

checkconfig() {
        if [ ! -e /etc/quagga/zebra.conf ] ; then
        	eerror "You need to create /etc/quagga/zebra.conf first."
        	eerror "An example can be found in /etc/quagga/samples/zebra.conf.sample"
          return 1
        fi
}

cleanup() {
	ebegin "Cleaning up stale zebra routes..."
	ip route flush proto zebra
	eend $?
}

start() {
	checkconfig || return 1
	cleanup

	ebegin "Starting zebra"
	start-stop-daemon --start --quiet --exec /usr/sbin/zebra \
	                  -- -d -f /etc/quagga/zebra.conf ${ZEBRA_OPTS} \
			     --pid_file /var/run/quagga/zebra.pid
	result=$?
	eend $result
}

stop() {
	ebegin "Stopping zebra"
	start-stop-daemon --stop --quiet --pidfile /var/run/quagga/zebra.pid
	result=$?
	eend $result
}