copy trunk to buildroot-ng branch
[15.05/openwrt.git] / package / ez-ipupdate / files / ez-ipupdate.init
1 #!/bin/sh
2
3 BIN=ez-ipupdate
4 CONF=/etc/$BIN.conf
5 RUN_D=/var/run
6 PID_F=$RUN_D/$BIN.pid
7 [ -f $CONF ] || exit
8
9 case $1 in
10  start)
11   mkdir -p $RUN_D
12   $BIN -c $CONF
13   ;;
14  stop)
15   [ -f $PID_F ] && kill $(cat $PID_F)
16   ;;
17  *)
18   echo "usage: $0 (start|stop)"
19   exit 1
20 esac
21
22 exit $?