diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-04-13 22:20:15 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-04-13 22:20:15 +0000 |
commit | 8675818f87ede896382e712554a8b820b0f8ead7 (patch) | |
tree | 94118554cd257124b0bf579ac85441270645b86f /package/htpdate/files/htpdate.init | |
parent | 7797df76097505e0d81a1622f2b13c3593a75ed2 (diff) | |
download | master-187ad058-8675818f87ede896382e712554a8b820b0f8ead7.tar.gz master-187ad058-8675818f87ede896382e712554a8b820b0f8ead7.tar.bz2 master-187ad058-8675818f87ede896382e712554a8b820b0f8ead7.zip |
remove lots of non-essential packages
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3641 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/htpdate/files/htpdate.init')
-rw-r--r-- | package/htpdate/files/htpdate.init | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/package/htpdate/files/htpdate.init b/package/htpdate/files/htpdate.init deleted file mode 100644 index 97a413f774..0000000000 --- a/package/htpdate/files/htpdate.init +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh - -BIN=htpdate -DEFAULT=/etc/default/$BIN -RUN_D=/var/run -PID_F=$RUN_D/$BIN.pid -[ -f $DEFAULT ] && . $DEFAULT - -case $1 in - start) - mkdir -p $RUN_D - $BIN -l -s -t $OPTIONS && $BIN -D $OPTIONS - ;; - stop) - [ -f $PID_F ] && kill $(cat $PID_F) - ;; - *) - echo "usage: $0 (start|stop)" - exit 1 -esac - -exit $? |