home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / Other / Coherent / base / disk1.4.10.dd / etc / umount.all < prev    next >
Encoding:
Text File  |  1993-11-09  |  358 b   |  20 lines

  1. # umount.all
  2. # Tue Nov  9 08:19:27 1993 CST
  3.  
  4. # Go through list of lines "/dev/foo on /dirname since date..."
  5.  
  6. UMNT_STAT=0
  7. /etc/mount | while read DEV x DIR y; do
  8.     case $DIR in
  9.     /)
  10.         # Don't try to umount root file system.
  11.         continue
  12.         ;;
  13.     *)
  14.         # Exit with failure status if any umount fails.
  15.         /etc/umount $DEV || UMNT_STAT=1
  16.         ;;
  17.     esac
  18. done
  19. exit $UMNT_STAT
  20.