#!/bin/sh /etc/rc.common START=99 STOP=10 start() { sleep 60 /sbin/wifi up } stop() { /sbin/wifi down } restart() { /sbin/wifi down /sbin/wifi up }