diff options
Diffstat (limited to 'openwrt/package/htpdate/files')
-rw-r--r-- | openwrt/package/htpdate/files/htpdate.default | 2 | ||||
-rw-r--r-- | openwrt/package/htpdate/files/htpdate.init | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/openwrt/package/htpdate/files/htpdate.default b/openwrt/package/htpdate/files/htpdate.default index 8c182b3ee..94674fdd3 100644 --- a/openwrt/package/htpdate/files/htpdate.default +++ b/openwrt/package/htpdate/files/htpdate.default @@ -1 +1 @@ -OPTIONS="-D www.google.com www.yahoo.com www.linux.org www.freebsd.org" +OPTIONS="www.google.com www.yahoo.com www.linux.org www.freebsd.org" diff --git a/openwrt/package/htpdate/files/htpdate.init b/openwrt/package/htpdate/files/htpdate.init index 9af0e5595..69d3d35f5 100644 --- a/openwrt/package/htpdate/files/htpdate.init +++ b/openwrt/package/htpdate/files/htpdate.init @@ -9,7 +9,7 @@ PID_F=$RUN_D/$BIN.pid case $1 in start) mkdir -p $RUN_D - $BIN $OPTIONS + $BIN -C 0 -l -s $OPTIONS && $BIN -D $OPTIONS ;; stop) [ -f $PID_F ] && kill $(cat $PID_F) |