diff options
author | John Crispin <blogic@openwrt.org> | 2007-09-01 21:01:09 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2007-09-01 21:01:09 +0000 |
commit | d4f61b29bc710789c9b95b75208078451303f616 (patch) | |
tree | da62ad244b2d03e3710447956002c91055adc5b3 /package/hotplug2/files | |
parent | 9d2d9cca9de780796b167263e7387dafa9d8b683 (diff) | |
download | upstream-d4f61b29bc710789c9b95b75208078451303f616.tar.gz upstream-d4f61b29bc710789c9b95b75208078451303f616.tar.bz2 upstream-d4f61b29bc710789c9b95b75208078451303f616.zip |
reduce watchdog trigger from 10 to 5 seconds
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8571 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/hotplug2/files')
-rw-r--r-- | package/hotplug2/files/hotplug2.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/hotplug2/files/hotplug2.rules b/package/hotplug2/files/hotplug2.rules index 11faf7b94f..8429857824 100644 --- a/package/hotplug2/files/hotplug2.rules +++ b/package/hotplug2/files/hotplug2.rules @@ -5,6 +5,6 @@ SUBSYSTEM ~~ (net|button|usb) { } DEVICENAME ~~ (watchdog) { - exec /sbin/watchdog -t 10 /dev/watchdog; + exec /sbin/watchdog -t 5 /dev/watchdog; next } |