v0.3. Internet detector daemon

This commit is contained in:
gSpot
2021-10-31 20:07:17 +03:00
parent 511dea9ee0
commit a008297225
34 changed files with 1917 additions and 143 deletions

View File

@@ -0,0 +1,19 @@
#!/bin/sh /etc/rc.common
START=99
STOP=01
ID="/usr/bin/internet-detector"
start() {
$ID
}
stop() {
$ID stop
}
restart() {
stop
start
}