20 lines
166 B
Bash
20 lines
166 B
Bash
#!/bin/sh /etc/rc.common
|
|
|
|
START=99
|
|
|
|
start() {
|
|
/sbin/wifi up
|
|
return 0
|
|
}
|
|
|
|
stop() {
|
|
/sbin/wifi down
|
|
return 0
|
|
}
|
|
|
|
restart() {
|
|
if stop; then
|
|
start
|
|
fi
|
|
}
|