packages/net/wifidog/files/wifidog.init
florian 9180b6b150 [package] update wifidog to 20090925 (#5902)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@17759 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-09-27 13:04:48 +00:00

17 lines
276 B
Bash

#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
START=65
EXTRA_COMMANDS="status"
EXTRA_HELP=" status Print the status of the service"
start() {
/usr/bin/wifidog-init start
}
stop() {
/usr/bin/wifidog-init stop
}
status() {
/usr/bin/wifidog-init status
}