#! /usr/bin/python
import sys, logging

try:
    from arcnagios.plugins.gridstorage import GridStorageProbe
except ImportError, xc:
    sys.stdout.write('UNKNOWN: Error loading modules: %s\n\nsys.path = %r\n'
		     %(xc, sys.path))
    sys.exit(3)

logging.basicConfig()
probe = GridStorageProbe()
probe.nagios_run()
