home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / live / etc / init.d / single < prev    next >
Text File  |  1998-06-21  |  476b  |  24 lines

  1. #! /bin/sh
  2. #
  3. # single    executed by init(8) upon entering runlevel 1 (single).
  4. #
  5. # Version:    @(#)single  1.10  22-Jun-1998  miquels@cistron.nl
  6. #
  7.  
  8. PATH="/sbin:/bin:/usr/sbin:/usr/bin"
  9.  
  10. # Kill all processes.
  11. echo -n "Sending all processes the TERM signal... "
  12. killall5 -15
  13. echo "done."
  14. sleep 5
  15. echo -n "Sending all processes the KILL signal... "
  16. killall5 -9
  17. echo "done."
  18.  
  19. # We start update here, since we just killed it.
  20. update
  21.  
  22. echo "Entering single-user mode..."
  23. exec init -t1 S
  24.