#! /bin/sh
#
# umountfs	Turn off swap and unmount all local file systems.
#
# Version:      @(#)umountfs  2.78  05-Jun-2000  miquels@cistron.nl
#
# chkconfig: 06 40 0
#

PATH=/sbin:/bin:/usr/sbin:/usr/bin

echo -n "Unmounting local filesystems... "
  umount -a $FORCE -r -t jffs2 
  umount -a $FORCE -r -t ext3 
# umount $FORCE -a -r -o remount,ro
#  mount -o remount,ro -a -t ext3
echo "done."
# debug ...
#echo "Mounted file systems:"
#mount




