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 | |
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')
-rw-r--r-- | openwrt/package/howl/files/autoipd.init | 20 | ||||
-rw-r--r-- | openwrt/package/howl/files/mDNSResponder.conf | 2 | ||||
-rw-r--r-- | openwrt/package/howl/files/mDNSResponder.init | 20 | ||||
-rw-r--r-- | openwrt/package/howl/files/nifd.init | 21 |
4 files changed, 63 insertions, 0 deletions
diff --git a/openwrt/package/howl/files/autoipd.init b/openwrt/package/howl/files/autoipd.init new file mode 100644 index 000000000..eed593603 --- /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 $? diff --git a/openwrt/package/howl/files/mDNSResponder.conf b/openwrt/package/howl/files/mDNSResponder.conf new file mode 100644 index 000000000..eac712f9e --- /dev/null +++ b/openwrt/package/howl/files/mDNSResponder.conf @@ -0,0 +1,2 @@ +#name #type #domain #port #text +"My Router" _http._tcp local. 80 "txtvers=1" "path=/P" "note=My Router" diff --git a/openwrt/package/howl/files/mDNSResponder.init b/openwrt/package/howl/files/mDNSResponder.init new file mode 100644 index 000000000..292280f7c --- /dev/null +++ b/openwrt/package/howl/files/mDNSResponder.init @@ -0,0 +1,20 @@ +#!/bin/sh + +DEFAULT=/etc/default/mDNSResponder +RUN_D=/var/run +PID_F=$RUN_D/mDNSResponder.pid +[ -f $DEFAULT ] && . $DEFAULT + +case $1 in + start) + [ -d $RUN_D ] || mkdir -p $RUN_D + mDNSResponder $OPTIONS + ;; + stop) + [ -f $PID_F ] && kill $(cat $PID_F) + ;; + *) + echo "usage: $0 (start|stop)" + exit 1 +esac +exit $? diff --git a/openwrt/package/howl/files/nifd.init b/openwrt/package/howl/files/nifd.init new file mode 100644 index 000000000..b67861eb2 --- /dev/null +++ b/openwrt/package/howl/files/nifd.init @@ -0,0 +1,21 @@ +#!/bin/sh + +DEFAULT=/etc/default/nifd +RUN_D=/var/run +PID_F=$RUN_D/nifd.pid + +[ -f $DEFAULT ] && . $DEFAULT + +case $1 in + start) + [ -d $RUN_D ] || mkdir -p $RUN_D + nifd $OPTIONS + ;; + stop) + [ -f $PID_F ] && kill $(cat $PID_F) + ;; + *) + echo "usage: $0 (start|stop)" + exit 1 +esac +exit $? |