home *** CD-ROM | disk | FTP | other *** search
/ BUG 1 / BUGCD1996_0708.ISO / pc / util / minilin / minilin.exe / ETC / RC.D / RC.0 < prev    next >
Text File  |  1993-11-26  |  450b  |  17 lines

  1. #! /bin/sh
  2. #
  3. # brc        This file is executed by init(8) when the system is being
  4. #        shutdown (i.e. set to run at level 0).  It usually takes
  5. #        care of un-mounting al unneeded file systems.
  6. #
  7. # Version:    @(#)/etc/brc        2.01    02/17/93
  8. #
  9. # Authors:    Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org>
  10. #        Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
  11. #
  12.  
  13.   PATH=/sbin:/bin:/usr/sbin:/usr/bin
  14.   echo Unmounting file systems.....
  15.   umount -a
  16.   echo Done.
  17.