home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / mint / init_5 / rc.sin < prev    next >
Encoding:
Text File  |  1993-08-03  |  180 b   |  13 lines

  1. #!/bin/sh
  2. #
  3. # This is run when the system is booted in single-user mode.
  4. #
  5.  
  6. /bin/cat /dev/null > /etc/single
  7.  
  8. if [ -f /etc/fsck ] ; then
  9.     /etc/fsck -q /
  10.     /etc/fsck -q /usr
  11. fi
  12. exit
  13.