home *** CD-ROM | disk | FTP | other *** search
- # umount.all
- # Tue Nov 9 08:19:27 1993 CST
-
- # Go through list of lines "/dev/foo on /dirname since date..."
-
- UMNT_STAT=0
- /etc/mount | while read DEV x DIR y; do
- case $DIR in
- /)
- # Don't try to umount root file system.
- continue
- ;;
- *)
- # Exit with failure status if any umount fails.
- /etc/umount $DEV || UMNT_STAT=1
- ;;
- esac
- done
- exit $UMNT_STAT
-