#! /bin/bash

set -e

MP=/tmp/ubuntu-recovery.tmp.mount
if [ -d $MP ]; then
	if mount | grep -q $MP; then
		umount $MP
	fi
	rmdir $MP
fi

exit 0
