Browse Source

watchdog: Do not add hooks if systemd module is included

When systemd is present, let it manage watchdog feed.

Signed-off-by: Pratyush Anand <panand@redhat.com>
Cc: Dave Young <dyoung@redhat.com>
Cc: Don Zickus <dzickus@redhat.com>
Cc: Harald Hoyer <harald@redhat.com>
master
Pratyush Anand 9 years ago committed by Harald Hoyer
parent
commit
89da227de9
  1. 5
      modules.d/04watchdog/module-setup.sh

5
modules.d/04watchdog/module-setup.sh

@ -12,6 +12,11 @@ depends() { @@ -12,6 +12,11 @@ depends() {

# called by dracut
install() {
# Do not add watchdog hooks if systemd module is included
# In that case, systemd will manage watchdog kick
if dracut_module_included "systemd"; then
return
fi
inst_hook cmdline 00 "$moddir/watchdog.sh"
inst_hook cmdline 50 "$moddir/watchdog.sh"
inst_hook pre-trigger 00 "$moddir/watchdog.sh"

Loading…
Cancel
Save