#!/bin/bash # # reboots the system and displays a nice message # # $Header: /home/cvsd/alx-cvs/alx-src/alxconfig-ng/bin/user_reboot.sh,v 1.1 2005-04-12 20:37:01 niro Exp $ if [ -x /usr/bin/Xdialog ] then /usr/bin/Xdialog \ --title Shutdown \ --no-buttons \ --infobox "System reboot in progress ..." 6 30 5000 \ & sudo /sbin/reboot else sudo /sbin/reboot fi