#!/bin/sh

echo -n "Reboot the system (y/N): "
exec 2>/dev/null
if ! read answer; then exit 0; fi
if [ "${answer}" = "y" ] || [ "${answer}" = "Y" ]; then /home/www/cgi-bin/fast-reboot; fi
exit 0
