diff options
Diffstat (limited to 'package/chillispot/ipkg')
-rw-r--r-- | package/chillispot/ipkg/chillispot.conffiles | 1 | ||||
-rw-r--r-- | package/chillispot/ipkg/chillispot.control | 7 | ||||
-rw-r--r--[-rwxr-xr-x] | package/chillispot/ipkg/chillispot.init (renamed from package/chillispot/ipkg/etc/init.d/S60chilli) | 8 |
3 files changed, 14 insertions, 2 deletions
diff --git a/package/chillispot/ipkg/chillispot.conffiles b/package/chillispot/ipkg/chillispot.conffiles new file mode 100644 index 0000000000..08485167dd --- /dev/null +++ b/package/chillispot/ipkg/chillispot.conffiles @@ -0,0 +1 @@ +/etc/chilli.conf diff --git a/package/chillispot/ipkg/chillispot.control b/package/chillispot/ipkg/chillispot.control new file mode 100644 index 0000000000..624dcc5532 --- /dev/null +++ b/package/chillispot/ipkg/chillispot.control @@ -0,0 +1,7 @@ +Package: chillispot +Priority: optional +Section: net +Maintainer: Felix Fietkau <nbd@vd-s.ath.cx> +Source: buildroot-internal +Description: ChilliSpot is a Wireless LAN Access Point Controller. +Depends: kmod-tun diff --git a/package/chillispot/ipkg/etc/init.d/S60chilli b/package/chillispot/ipkg/chillispot.init index 0fded5b137..289b1fe8a5 100755..100644 --- a/package/chillispot/ipkg/etc/init.d/S60chilli +++ b/package/chillispot/ipkg/chillispot.init @@ -1,12 +1,16 @@ #!/bin/sh + +RUN_D=/var/run +PID_F=$RUN_D/chilli.pid + case $1 in start) /sbin/insmod tun >/dev/null 2>&1 - [ -d /var/run ] || mkdir -p /var/run + [ -d $RUN_D ] || mkdir -p $RUN_D /usr/sbin/chilli ;; stop) - [ -f /var/run/chilli.pid ] && kill $(cat /var/run/chilli.pid) >/dev/null 2>&1 + [ -f $PID_F ] && kill $(cat $PID_F) >/dev/null 2>&1 ;; *) echo "usage: $0 (start|stop)" |