diff options
author | Fabian Affolter <fabian@bernewireless.net> | 2011-07-05 19:40:43 +0200 |
---|---|---|
committer | Fabian Affolter <fabian@bernewireless.net> | 2011-07-05 19:40:43 +0200 |
commit | 7f9851115264bca9bce3926ddb29e533a23929dd (patch) | |
tree | b0426fc489e4dad582f34b25d6f93354a65f5c0f /main/coova-chilli/chilli.initd | |
parent | 5dac3f219058736f6e19b7bec2b1cc2b1b300981 (diff) | |
parent | 269fc1049583d36e07153215fe535f88947ea98b (diff) | |
download | aports-7f9851115264bca9bce3926ddb29e533a23929dd.tar.bz2 aports-7f9851115264bca9bce3926ddb29e533a23929dd.tar.xz |
Merge branch 'master' of git://git.alpinelinux.org/aports
Diffstat (limited to 'main/coova-chilli/chilli.initd')
-rwxr-xr-x | main/coova-chilli/chilli.initd | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/main/coova-chilli/chilli.initd b/main/coova-chilli/chilli.initd new file mode 100755 index 0000000000..fe6ec72d5e --- /dev/null +++ b/main/coova-chilli/chilli.initd @@ -0,0 +1,42 @@ +#!/sbin/runscript + +depend() { + use net + after firewall + provide chilli +} + + +checkconfig() { + if [ -f /etc/chilli.conf ]; then + return 0; + else + eerror "Error starting CoovaChilli. Please create /etc/chilli.conf before." + return 1; + fi + +} + +start() { + checkconfig || return 1 + ebegin "Starting CoovaChilli Captive Portal" + + echo 1 > /proc/sys/net/ipv4/ip_forward + lsmod | grep tun >& /dev/null + + if [ $? -ne 0 ]; then + modprobe tun >& /dev/null + fi + + start-stop-daemon --start --pidfile /var/run/chilli/chilli.pid --quiet \ + --exec /usr/sbin/chilli -- --pidfile=/var/run/chilli/chilli.pid + eend $? +} + +stop() { + ebegin "Stopping CoovaChilli Captive Portal" + start-stop-daemon --stop --pidfile /var/run/chilli.pid --quiet + eend $? +} + + |