aboutsummaryrefslogtreecommitdiffstats
path: root/package/chillispot/ipkg
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2005-04-18 21:42:27 +0000
committerNicolas Thill <nico@openwrt.org>2005-04-18 21:42:27 +0000
commitdfcdfa63eb488bf4354d44ba5d72674730c976b2 (patch)
tree8a750dfc30d2d6262a1e846461c70679d76e1e8d /package/chillispot/ipkg
parent5a816cbb20bff4c563ec449a20ac3bbfc22e1433 (diff)
downloadupstream-dfcdfa63eb488bf4354d44ba5d72674730c976b2.tar.gz
upstream-dfcdfa63eb488bf4354d44ba5d72674730c976b2.tar.bz2
upstream-dfcdfa63eb488bf4354d44ba5d72674730c976b2.zip
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/openwrt@679 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/chillispot/ipkg')
-rw-r--r--package/chillispot/ipkg/chillispot.conffiles1
-rw-r--r--package/chillispot/ipkg/chillispot.control7
-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)"