#!/bin/sh /etc/rc.common
# Copyright (C) 2006-2011 OpenWrt.org

START=99
STOP=99

start() {
	touch /var/log/wsa/wsa.log
	wsa start
}

stop() {
	wsa stop
}

restart() {
	stop
	start
}
