#!/bin/sh /etc/rc.common
 
USE_PROCD=1

START=99
STOP=50

PROG=/usr/sbin/nwifi
NAME=nwifi

start_service()
{      
	logger NWIFI "Starting"
	procd_open_instance
	procd_set_param command $PROG
	procd_set_param stdout 1 # here it is possible to remove the debug output...
	procd_set_param stderr 1
	procd_set_param respawn
	procd_close_instance
}
