#!/bin/bash


if [ -e "/usr/sbin/watchdog" ] && [ -x "/usr/sbin/watchdog" ]; then
	/usr/sbin/watchdog
        echo "Beware the byte of the dog..."
else
        echo "Watchdog not installed..."
fi

