2006-10-04 20:57:49 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
2009-09-27 13:04:48 +00:00
|
|
|
START=65
|
|
|
|
EXTRA_COMMANDS="status"
|
|
|
|
EXTRA_HELP=" status Print the status of the service"
|
2006-10-04 20:57:49 +00:00
|
|
|
|
|
|
|
start() {
|
|
|
|
/usr/bin/wifidog-init start
|
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
/usr/bin/wifidog-init stop
|
|
|
|
}
|
2006-08-26 07:45:45 +00:00
|
|
|
|
2009-09-27 13:04:48 +00:00
|
|
|
status() {
|
|
|
|
/usr/bin/wifidog-init status
|
|
|
|
}
|