This file is indexed.

/usr/lib/nagios/plugins/check_arcinfosys 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
14
15
16
17
18
19
#! /usr/bin/python

# !! IMPORTANT !!
#
# This probe is DEPRECATED.  Please use check_arcglue2, check_aris, or
# check_egiis.

import sys, logging

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

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