8 lines
209 B
Plaintext
8 lines
209 B
Plaintext
|
#!/bin/sh
|
||
|
uci add system watchcat
|
||
|
uci set system.@watchcat[0].period=6h
|
||
|
uci set system.@watchcat[0].mode=ping
|
||
|
uci set system.@watchcat[0].pinghosts=8.8.8.8
|
||
|
uci set system.@watchcat[0].forcedelay=30
|
||
|
uci commit
|