From b7856cc45d5bd5485c805f028722a1961c83a23a Mon Sep 17 00:00:00 2001 From: Thorsten Glaser Date: Sun, 4 May 2014 00:11:56 +0000 Subject: rename init scripts so their basename matches their enabler variable --- package/ez-ipupdate/files/ezipupdate.init | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 package/ez-ipupdate/files/ezipupdate.init (limited to 'package/ez-ipupdate/files/ezipupdate.init') diff --git a/package/ez-ipupdate/files/ezipupdate.init b/package/ez-ipupdate/files/ezipupdate.init new file mode 100644 index 000000000..4d2da25c8 --- /dev/null +++ b/package/ez-ipupdate/files/ezipupdate.init @@ -0,0 +1,28 @@ +#!/bin/sh +#PKG ez-ipupdate +#INIT 50 +. /etc/rc.conf + +case $1 in +autostop) ;; +autostart) + test x"${ezipupdate:-NO}" = x"NO" && exit 0 + test x"$ezipupdate" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start + exec sh $0 start + ;; +start) + /usr/sbin/ez-ipupdate -c /etc/ez-ipupdate.conf -d + ;; +stop) + kill $(pgrep -f /usr/sbin/ez-ipupdate) + ;; +restart) + sh $0 stop + sh $0 start + ;; +*) + echo "Usage: $0 {start | stop | restart}" + exit 1 + ;; +esac +exit $? -- cgit v1.2.3