#!/bin/sh
result=`grep /cf /proc/mounts`
if [ "$result" != "" ]
then
	exit 1
fi
exit 0
