#!/bin/sh

model=`cat /etc/model`

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

exit 0