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

  1. #! /bin/sh
  2. #
  3. # rmnologin    This script removes the /etc/nologin file as the last
  4. #        step in the boot process.
  5. #
  6. # Version:    @(#)rmnologin  1.00  22-Jun-1998  miquels@cistron.nl
  7. #
  8.  
  9. if [ -f /etc/nologin.boot ]
  10. then
  11.     rm -f /etc/nologin /etc/nologin.boot
  12. fi
  13.  
  14.