Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2802 - (show annotations) (download) (as text)
Mon Aug 29 20:20:48 2011 UTC (12 years, 8 months ago) by niro
File MIME type: application/x-sh
File size: 418 byte(s)
-merged branch alxconfig-0_6_0 into trunk
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 elif [[ -x $(which xmessage) ]]
14 then
15 msg="
16 System reboot in progress ...
17
18 "
19 xmessage -center -title "Reboot" -buttons "" "${msg}" \
20 & sudo /sbin/reboot
21 else
22 sudo /sbin/reboot
23 fi