summaryrefslogtreecommitdiffstats
path: root/openwrt/package/chillispot/ipkg/etc
diff options
context:
space:
mode:
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 $?