#!/bin/sh

model=`cat /etc/model`

if [ "$model" = "ufs910" ];then
	if [ -e /var/swapdir/swapfile ];then
		echo "umount /tmp (60mb)"
		umount /tmp
	fi
fi

exit 0