mirror of
https://github.com/gSpotx2f/luci-app-internet-detector.git
synced 2025-12-09 21:17:00 +03:00
20 lines
144 B
Bash
Executable File
20 lines
144 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=97
|
|
STOP=01
|
|
|
|
ID="/usr/bin/internet-detector"
|
|
|
|
start() {
|
|
$ID
|
|
}
|
|
|
|
stop() {
|
|
$ID stop
|
|
}
|
|
|
|
restart() {
|
|
stop
|
|
start
|
|
}
|