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

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