Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1999 - (show annotations) (download) (as text)
Mon May 9 14:36:06 2011 UTC (12 years, 11 months ago) by niro
File MIME type: application/x-sh
File size: 258 byte(s)
-fixed header
-do not use full pathes, rely on PATH environment
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/halt
12 else
13 sudo /sbin/halt
14 fi