You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
- #!/bin/sh
-
- uci -q show system.@watchcat[0] || {
- 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
- }
|