diff options
author | Matteo Croce <rootkit85@yahoo.it> | 2008-04-03 20:59:18 +0000 |
---|---|---|
committer | Matteo Croce <rootkit85@yahoo.it> | 2008-04-03 20:59:18 +0000 |
commit | cd4447d2693a551ea60bf52a62c3dd8bd5bacb38 (patch) | |
tree | 87e5ccd393e4d4794f497d8056393cf6725571fb /package/base-files | |
parent | b526f65bafe346836959d55fd2154300dbb366df (diff) | |
download | upstream-cd4447d2693a551ea60bf52a62c3dd8bd5bacb38.tar.gz upstream-cd4447d2693a551ea60bf52a62c3dd8bd5bacb38.tar.bz2 upstream-cd4447d2693a551ea60bf52a62c3dd8bd5bacb38.zip |
fix typo in watchdog init script
SVN-Revision: 10726
Diffstat (limited to 'package/base-files')
-rwxr-xr-x | package/base-files/files/etc/init.d/watchdog | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/etc/init.d/watchdog b/package/base-files/files/etc/init.d/watchdog index 0821c8f475..b9286f7de4 100755 --- a/package/base-files/files/etc/init.d/watchdog +++ b/package/base-files/files/etc/init.d/watchdog @@ -3,5 +3,5 @@ START=97 start() { - [ -f /dev/watchtog ] && watchdog -t 5 /dev/watchdog + [ -c /dev/watchtog ] && watchdog -t 5 /dev/watchdog } |