2010-12-18 23:56:42 +00:00
|
|
|
#!/bin/sh
|
2011-01-05 15:33:39 +00:00
|
|
|
|
2012-05-08 16:44:50 +00:00
|
|
|
uci -q show system.@watchcat[0] || {
|
2011-01-05 15:33:39 +00:00
|
|
|
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
|
|
|
|
}
|