home *** CD-ROM | disk | FTP | other *** search
/ ftp.eterna.com.au / 2014.06.ftp.eterna.com.au.tar / ftp.eterna.com.au / pub / rc.d.tar.gz / rc.d.tar / rc.d / startup < prev    next >
Text File  |  1998-09-23  |  455b  |  19 lines

  1. #! /bin/sh
  2.  
  3. # PROVIDE: startup
  4.  
  5. # System startup script run by init on autoboot
  6. # or after single-user.
  7. # Output and error are redirected to console by init,
  8. # and the console is the controlling terminal.
  9.  
  10. stty status '^T'
  11.  
  12. # Set shell to ignore SIGINT (2), but not children;
  13. # shell catches SIGQUIT (3) and returns to single user after fsck.
  14. trap : 2
  15. trap : 3    # shouldn't be needed
  16.  
  17. export HOME=/
  18. export PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin
  19.