From 219a6dab8995aad9ac4860cc1a84d6f3509a03a4 Mon Sep 17 00:00:00 2001 From: wbx Date: Sun, 17 May 2009 14:41:34 +0200 Subject: Initial import --- package/htpdate/files/htpdate.init | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 package/htpdate/files/htpdate.init (limited to 'package/htpdate/files/htpdate.init') diff --git a/package/htpdate/files/htpdate.init b/package/htpdate/files/htpdate.init new file mode 100644 index 000000000..3c291ef54 --- /dev/null +++ b/package/htpdate/files/htpdate.init @@ -0,0 +1,26 @@ +#!/bin/sh +#FWINIT 60 +. /etc/rc.conf + +case $1 in +autostop) ;; +autostart) + test x"${htpdate:-NO}" = x"NO" && exit 0 + exec sh $0 start + ;; +start) + htpdate -l -s -t $htpdate_flags && htpdate -D $htpdate_flags + ;; +stop) + killall htpdate + ;; +restart) + sh $0 stop + sh $0 start + ;; +*) + echo "usage: $0 {start | stop | restart}" + exit 1 + +esac +exit $? -- cgit v1.2.3