Magellan Linux

Contents of /alx-src/branches/alxconf-060/bin/user_reboot.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1998 - (show annotations) (download) (as text)
Mon May 9 14:35:55 2011 UTC (12 years, 11 months ago) by niro
File MIME type: application/x-sh
File size: 257 byte(s)
-do not use full pathes, rely on PATH environment
1 #!/bin/bash
2 # reboots the system and displays a nice message
3 # $Id$
4 #
5
6 if [ -x $(which Xdialog) ]
7 then
8 Xdialog \
9 --title "Reboot" \
10 --no-buttons \
11 --infobox "System reboot in progress ..." 6 34 5000 \
12 & sudo /sbin/reboot
13 else
14 sudo /sbin/reboot
15 fi