#!/bin/bash # # reboots the system and displays a nice message # # $Id$ if [ -x /usr/bin/Xdialog ] then /usr/bin/Xdialog \ --title "Reboot" \ --no-buttons \ --infobox "System reboot in progress ..." 6 34 5000 \ & sudo /sbin/reboot else sudo /sbin/reboot fi