#!/bin/sh
# This restarts the watchdog after the sendsig init script kills all processes in order to
# trigger the watchdog while filesystems are unmounted/synced
export PATH="${PATH:+$PATH:}/usr/sbin:/sbin"

case "$1" in
  stop)
	watchdogDaemon 5 0xffd0300c 0x76
	echo "."
	;;
  *)
	echo "Usage: /etc/init.d/watchdogShutdown {stop}"
	exit 1
esac

exit 0
