#!/bin/sh

# Read data from /proc/mounts on linux and report back in the xymon client
# It gives more accurate data than the 'mount' command and can catch
# disks in a read-only state.

test -r /proc/mounts && exec cat /proc/mounts
