home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 49 / PCPP49b.iso / freebies / BeOS5-PersonalEdition / data1.cab / Data_Files / image.be / beos / system / boot / ShutdownScript < prev   
Encoding:
Text File  |  2000-03-24  |  688 b   |  23 lines

  1. #
  2. # This is the system shutdown script.  It provides a hook for add
  3. # functionality at the start of the shutdown process. This file is executed
  4. # as the first step in the shutdown (or restart) process, before any
  5. # running application are closed.
  6. #
  7. # Do not edit or change this file.  
  8. #
  9. # If you want to add shutdown customizations, add them to the file
  10. # $HOME/config/boot/UserShutdownScript.  This script checks for that 
  11. # file and makes sure that it gets executed if it exists (that is 
  12. # done as the last thing before exiting).
  13. #
  14. #
  15.  
  16. export HOME=/boot/home
  17.  
  18. if [ -f $HOME/config/boot/UserShutdownScript ]
  19. then
  20.       . $HOME/config/boot/UserShutdownScript    # give users a shot too
  21. fi
  22.  
  23.