9db075db783efbe49e204009f3bd39c523641411
[openwrt/svn-archive/packages.git] / net / wifidog / files / wifidog.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006 OpenWrt.org
3 START=65
4 EXTRA_COMMANDS="status"
5 EXTRA_HELP=" status Print the status of the service"
6
7 start() {
8 /usr/bin/wifidog-init start
9 }
10
11 stop() {
12 /usr/bin/wifidog-init stop
13 }
14
15 status() {
16 /usr/bin/wifidog-init status
17 }