blob: 4320a3dd7a5b82282977480c8cadb6728ed22bf6 (
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
|
#!/sbin/runscript
# Copyright 1999-2003 DataCore GmbH, Amir Guindehi
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/files/init/ospfd,v 1.1 2004/03/29 12:29:03 amir Exp $
depend() {
need net zebra
}
checkconfig() {
if [ ! -e /etc/quagga/ospfd.conf ] ; then
eerror "You need to create /etc/quagga/ospfd.conf first."
eerror "An example can be found in /etc/quagga/ospfd.conf.sample"
return 1
fi
}
start() {
ebegin "Starting ospfd"
start-stop-daemon --start --quiet --exec /usr/sbin/ospfd \
-- -d -f /etc/quagga/ospfd.conf \
--pid_file /var/run/quagga/ospfd.pid
result=$?
eend $result
}
stop() {
ebegin "Stopping ospfd"
start-stop-daemon --stop --quiet --pidfile /var/run/quagga/ospfd.pid
result=$?
eend $result
}
|