#!/bin/sh
echo Syncing disks...
/bin/sync
cat << EOF
Unmounting file systems.....
EOF
/bin/umount -a 1> /dev/null 2> /dev/null
echo Done.
/sbin/reboot -f
