diff options
author | simon <simon@FreeBSD.org> | 2004-04-26 19:41:37 +0000 |
---|---|---|
committer | simon <simon@FreeBSD.org> | 2004-04-26 19:41:37 +0000 |
commit | 9d0355ed7f0bbf975788782707905c7d8e6af277 (patch) | |
tree | 20d99c70aed744bff23f6fb008c649d4c8e30e1b /etc | |
parent | 5e3cccb717e075c7f12570e8bb3ee92967d42791 (diff) | |
download | FreeBSD-src-9d0355ed7f0bbf975788782707905c7d8e6af277.zip FreeBSD-src-9d0355ed7f0bbf975788782707905c7d8e6af277.tar.gz |
Removes the check for the existence of the sysctl variable
debug.watchdog since it is not created by hardware watchdog(4) devices.
The watchdog(4) device is always compiled in the kernel, so removing the
check should not cause any problems.
Approved by: phk
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc.d/watchdogd | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/etc/rc.d/watchdogd b/etc/rc.d/watchdogd index e496a40..84654db 100644 --- a/etc/rc.d/watchdogd +++ b/etc/rc.d/watchdogd @@ -36,16 +36,7 @@ name="watchdogd" rcvar="`set_rcvar`" command="/usr/sbin/${name}" -start_precmd="watchdogd_precmd" pidfile="/var/run/${name}.pid" -watchdogd_precmd() -{ - if ! sysctl debug.watchdog >/dev/null 2>&1; then - err 1 "Your kernel doesn't have watchdog support." - fi - return 0 -} - load_rc_config $name run_rc_command "$1" |