#!/bin/sh

if egrep ' ro[, ]' /proc/mounts | grep -v iso9660 ; then
	exit 2
else
	echo "No filesystems mounted read-only"
fi
