#!/bin/sh
#
# Check that we are using ext3, not ext2

awk "/ext2/ { print \"error: $0: Using ext2 on\",\$2 }" /proc/mounts
awk "/ext3/ { print \"success: $0: Using ext3 on\",\$2 }" /proc/mounts
