This file is indexed.

/usr/lib/nagios/plugins/check_gridstorage is in nordugrid-arc-nagios-plugins 1.9.1-1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#! /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()