Magellan Linux

Contents of /alx-src/trunk/alxconfig-ng/bin/user_reboot.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 309 - (show annotations) (download) (as text)
Sun Aug 28 19:32:13 2005 UTC (18 years, 8 months ago) by niro
File MIME type: application/x-sh
File size: 368 byte(s)
- bigger width for the msgbox

1 #!/bin/bash
2 #
3 # reboots the system and displays a nice message
4 #
5 # $Header: /home/cvsd/alx-cvs/alx-src/alxconfig-ng/bin/user_reboot.sh,v 1.3 2005-08-28 19:32:05 niro Exp $
6
7 if [ -x /usr/bin/Xdialog ]
8 then
9 /usr/bin/Xdialog \
10 --title "Reboot" \
11 --no-buttons \
12 --infobox "System reboot in progress ..." 6 34 5000 \
13 & sudo /sbin/reboot
14 else
15 sudo /sbin/reboot
16 fi