home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / armlinux / alpha / PARTITIONS / ROOT_GZ / root / etc / rc.d / rc.0 next >
Encoding:
Text File  |  1995-05-29  |  442 b   |  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.