diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-15 20:25:32 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-15 20:25:32 +0000 |
commit | ea12cac80876ef193ceeef2e2b4368c6bd1758e6 (patch) | |
tree | bc58e30da8425b66f5cecb86258b301c98812d03 /package/xinetd/files/xinetd.init | |
parent | 5f6d549a0bcb7ff8b7154bf178233abce9d4f35a (diff) |
Add xinetd package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@912 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/xinetd/files/xinetd.init')
-rw-r--r-- | package/xinetd/files/xinetd.init | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/package/xinetd/files/xinetd.init b/package/xinetd/files/xinetd.init new file mode 100644 index 000000000..2df7a8196 --- /dev/null +++ b/package/xinetd/files/xinetd.init @@ -0,0 +1,21 @@ +#!/bin/sh + +DEFAULT=/etc/default/xinetd +RUN_D=/var/run +PID_F=$RUN_D/xinetd.pid +[ -f $DEFAULT ] && . $DEFAULT + +case $1 in + start) + [ -d $RUN_D ] || mkdir -p $RUN_D + xinetd $OPTIONS + ;; + stop) + [ -f $PID_F ] && kill $(cat $PID_F) + ;; + *) + echo "usage: $0 (start|stop)" + exit 1 +esac + +exit $? |