uci_defaults_watchcat 255 B

12345678910
  1. #!/bin/sh
  2. uci -q show system.@watchcat[0] || {
  3. uci add system watchcat
  4. uci set system.@watchcat[0].period=6h
  5. uci set system.@watchcat[0].mode=ping
  6. uci set system.@watchcat[0].pinghosts=8.8.8.8
  7. uci set system.@watchcat[0].forcedelay=30
  8. uci commit
  9. }