fix #81
[openwrt.git] / package / olsrd / files / olsrd.init
1 #!/bin/sh
2
3 DEFAULT=/etc/default/olsrd
4 [ -f $DEFAULT ] && . $DEFAULT
5
6 case $1 in
7 start)
8 olsrd $OPTIONS
9 ;;
10 *)
11 echo "usage: $0 (start)"
12 exit 1
13 esac
14
15 exit $?
This page took 0.046995 seconds and 5 git commands to generate.