arc: use the release for binutils/gcc
[openadk.git] / package / ez-ipupdate / files / ezipupdate.init
blob4d2da25c84dec8d29d25cf8aad4a3adbc32c2a68
1 #!/bin/sh
2 #PKG ez-ipupdate
3 #INIT 50
4 . /etc/rc.conf
6 case $1 in
7 autostop) ;;
8 autostart)
9 test x"${ezipupdate:-NO}" = x"NO" && exit 0
10 test x"$ezipupdate" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start
11 exec sh $0 start
13 start)
14 /usr/sbin/ez-ipupdate -c /etc/ez-ipupdate.conf -d
16 stop)
17 kill $(pgrep -f /usr/sbin/ez-ipupdate)
19 restart)
20 sh $0 stop
21 sh $0 start
24 echo "Usage: $0 {start | stop | restart}"
25 exit 1
27 esac
28 exit $?