Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3410 - (show annotations) (download) (as text)
Wed Apr 4 09:41:24 2012 UTC (12 years, 1 month ago) by niro
File MIME type: application/x-sh
File size: 433 byte(s)
-user poweroff instead of halt (fixes FS#18)
1 #!/bin/bash
2 # shuts the system down and displays a nice message
3 # $Id$
4
5 if [[ -x $(which Xdialog) ]]
6 then
7 Xdialog \
8 --title "Shutdown" \
9 --no-buttons \
10 --infobox "System shutdown in progress ..." 6 34 5000 \
11 & sudo /sbin/poweroff
12 elif [[ -x $(which xmessage) ]]
13 then
14 msg="
15 System shutdown in progress ...
16
17 "
18 xmessage -center -title "Shutdown" -buttons "" "${msg}" \
19 & sudo /sbin/poweroff
20 else
21 sudo /sbin/poweroff
22 fi