#
# This is the system shutdown script.  It provides a hook for add
# functionality at the start of the shutdown process. This file is executed
# as the first step in the shutdown (or restart) process, before any
# running application are closed.
#
# Do not edit or change this file.  
#
# If you want to add shutdown customizations, add them to the file
# $HOME/config/boot/UserShutdownScript.  This script checks for that 
# file and makes sure that it gets executed if it exists (that is 
# done as the last thing before exiting).
#
#

export HOME=/boot/home

if [ -f $HOME/config/boot/UserShutdownScript ]
then
      . $HOME/config/boot/UserShutdownScript	# give users a shot too
fi

