freebsd-ports/net/zebra/files/zebractl.in
Munechika SUMIKAWA d7081fc410 - Use arguments for different zebra services. Default is "-d"
- Update to use OPTIONSNG
- Rename LIBPAM to PAM (shared description)
- Drop my maintainership

PR:		ports/170678
Submitted by:	jgh
Feature safe:	yes
2012-11-12 03:03:03 +00:00

57 lines
1.5 KiB
Bash

#! /bin/sh
#
# $FreeBSD: /tmp/pcvs/ports/net/zebra/files/zebractl.in,v 1.1 2010-01-26 06:53:20 sumikawa Exp $
#
# zebra start/stop script by "Andreas Klemm <andreas@FreeBSD.ORG>"
#
usage()
{
echo "$0: usage: $0 [ start | stop | restart ]"
exit 1
}
if [ $# -lt 1 ]; then
echo "$0: error: one argument needed"; usage
elif [ $# -gt 1 ]; then
echo "$0: error: only one argument needed"; usage
fi
case $1 in
start)
if [ ! -f %%ETCDIR%%/zebra.conf ]; then
echo "error: zebra.conf config file is mandatory"
exit 1
fi
[ -f %%ETCDIR%%/zebra.conf ] \
&& %%PREFIX%%/sbin/zebra %%ZEBRAARGS%% && echo -n ' zebra'
[ -f %%ETCDIR%%/ripd.conf ] \
&& %%PREFIX%%/sbin/ripd %%RIPDARGS%% && echo -n ' ripd'
[ -f %%ETCDIR%%/ripngd.conf ] \
&& %%PREFIX%%/sbin/ripngd %%RIPNGDARGS%% && echo -n ' ripngd'
[ -f %%ETCDIR%%/ospfd.conf ] \
&& %%PREFIX%%/sbin/ospfd %%OSPFDARGS%% && echo -n ' ospfd'
[ -f %%ETCDIR%%/ospf6d.conf ] \
&& %%PREFIX%%/sbin/ospf6d %%OSPF6DARGS%% && echo -n ' ospf6d'
[ -f %%ETCDIR%%/bgpd.conf ] \
&& %%PREFIX%%/sbin/bgpd %%BGPDARGS%% && echo -n ' bgpd'
;;
stop)
[ -f %%ETCDIR%%/ripd.conf ] && killall ripd
[ -f %%ETCDIR%%/ripngd.conf ] && killall ripngd
[ -f %%ETCDIR%%/ospfd.conf ] && killall ospfd
[ -f %%ETCDIR%%/ospf6d.conf ] && killall ospf6d
[ -f %%ETCDIR%%/bgpd.conf ] && killall bgpd
[ -f %%ETCDIR%%/zebra.conf ] && killall zebra
;;
restart)
$0 stop
$0 start
;;
*) echo "$0: error: unknown option $1"
usage
;;
esac
exit 0