#!/bin/sh

# /sys is not needed anymore
/bin/umount /sys
if [ "X$?" != "X0" ]; then
	echo "WARNING: failed to un-mount temporary /sys.";
fi
# /proc is not needed anymore
/bin/umount /proc
if [ "X$?" != "X0" ]; then
	echo "WARNING: failed to un-mount temporary /proc.";
fi
