@mikeJB # For root users, ensure that /usr/local/sbin, /usr/sbin, and /sbin are in

the $PATH. Some means of connection don't add these by default (sshd comes to mind).

#if [ "id -u" = "0" ]; then

echo $PATH | grep /usr/local/sbin 1> /dev/null 2> /dev/null if [ ! $? = 0 ]; then PATH=/usr/local/sbin:/usr/sbin:/sbin:$PATH fi

#fi