add opwifi
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#!/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
|
||||
}
|
||||
Reference in New Issue
Block a user