summaryrefslogtreecommitdiffstats
path: root/openwrt/package/chillispot/ipkg/etc
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-04-18 21:42:27 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-04-18 21:42:27 +0000
commit2b5618fd9d7e7ac1a0c3b5f1c8fd290271baefcc (patch)
tree89a03a19a04423d02212fe287fd40468b1c1f52a /openwrt/package/chillispot/ipkg/etc
parented487fe96351920a80ad74725e4e4e144f040275 (diff)
Update chillispot to 1.0RC3, uniformize package Makefile, move ipkg related files to ./ipkg, add conffiles
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@679 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/chillispot/ipkg/etc')
-rwxr-xr-xopenwrt/package/chillispot/ipkg/etc/init.d/S60chilli16
1 files changed, 0 insertions, 16 deletions
diff --git a/openwrt/package/chillispot/ipkg/etc/init.d/S60chilli b/openwrt/package/chillispot/ipkg/etc/init.d/S60chilli
deleted file mode 100755
index 0fded5b13..000000000
--- a/openwrt/package/chillispot/ipkg/etc/init.d/S60chilli
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-case $1 in
- start)
- /sbin/insmod tun >/dev/null 2>&1
- [ -d /var/run ] || mkdir -p /var/run
- /usr/sbin/chilli
- ;;
- stop)
- [ -f /var/run/chilli.pid ] && kill $(cat /var/run/chilli.pid) >/dev/null 2>&1
- ;;
- *)
- echo "usage: $0 (start|stop)"
- exit 1
-esac
-
-exit $?