Bind AutoRecovery
Actually it can be any services, but I take Bind(named) under the spot. It's "/etc/init.d/named start" because I'm Fedora user.
#!/bin/sh PSAW=`ps -o "%p" -C named --no-heading` PSW=`echo $PSAW | cut -d" " -f 1` if [ -z "$PSW" ]; then echo "Named not running!" . /etc/init.d/named start fi exit