#!/bin/sh
#
# routed.service - routed(8) service file
#

case $1 in
start)
	/usr/sbin/routed -g -s
	;;
stop)	killall -q /usr/sbin/routed
	;;
*)
	echo "usage: $0 start|stop"
esac

# EOF

