#!/bin/sh /etc/rc.common
COMMAND=$1
START=99

start() {
	/usr/sbin/starthotspot $COMMAND >/dev/null 2>&1
}

stop() {
	/etc/init.d/firewall restart
	killall starthotspot
	
}
