#!/bin/sh /etc/rc.common
START=20

start() {
	iwconfig ath0 essid "FON_ATTENTION_PLEASE_CONNECT"
	ifconfig ath0 up
}

stop() {
	iwconfig ath0 essid off
	ifconfig ath0 down
}
