#!/bin/sh
#
# Start networking daemons.

RCDLINKS="0,K03 1,K03 2,S02 3,S02 4,S02 5,S02 6,K03"

test -f /usr/sbin/routed || exit 0

case "$1" in
  start)
#	echo -n "Starting network routing daemon: routed"; start-stop-daemon --start --quiet --exec /usr/sbin/routed ; echo "."
	;;
  stop)
        start-stop-daemon --stop --quiet --oknodo --exec /usr/sbin/routed
	;;
  *)
        echo "Usage: /etc/init.d/netstd_init {start|stop}"
        exit 1
esac

exit 0

