diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-15 12:34:56 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-15 12:34:56 +0000 |
commit | deaebf9f76e60fb85adbefe382dcfee10f262c68 (patch) | |
tree | f685b311dcd967f1088825bd8c80a4557a5d7d90 /openwrt/package/howl/files/autoipd.init | |
parent | 38b5764eeef6665494d23a1e30363099faeea303 (diff) |
Add howl package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@907 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/howl/files/autoipd.init')
-rw-r--r-- | openwrt/package/howl/files/autoipd.init | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/openwrt/package/howl/files/autoipd.init b/openwrt/package/howl/files/autoipd.init new file mode 100644 index 0000000000..eed593603c --- /dev/null +++ b/openwrt/package/howl/files/autoipd.init @@ -0,0 +1,20 @@ +#!/bin/sh + +DEFAULT=/etc/default/autopid +RUN_D=/var/run +PID_F=$RUN_D/autoipd.pid +[ -f $DEFAULT ] && . $DEFAULT + +case $1 in + start) + [ -d $RUN_D ] || mkdir -p $RUN_D + autoipd $OPTIONS + ;; + stop) + [ -f $PID_F ] && kill $(cat $PID_F) + ;; + *) + echo "usage: $0 (start|stop)" + exit 1 +esac +exit $? |