1
0
mirror of https://git.openwrt.org/feed/routing.git synced 2024-06-14 03:03:53 +02:00
openwrt-routing/files/olsrd.init

16 lines
164 B
Plaintext
Raw Normal View History

#!/bin/sh
DEFAULT=/etc/default/olsrd
[ -f $DEFAULT ] && . $DEFAULT
case $1 in
start)
olsrd $OPTIONS
;;
*)
echo "usage: $0 (start)"
exit 1
esac
exit $?