This file is indexed.

/usr/share/crmsh/scripts/check-uptime/report.py is in crmsh 2.2.0-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
#! /usr/bin/python
import crm_script
show_all = crm_script.is_true(crm_script.param('show_all'))
uptimes = crm_script.output(1).items()
max_uptime = '', 0
for host, uptime in uptimes:
    if uptime > max_uptime[1]:
        max_uptime = host, uptime
if show_all:
    print "Uptimes: %s" % (', '.join("%s: %s" % v for v in uptimes))
print "Longest uptime is %s seconds on host %s" % (max_uptime[1], max_uptime[0])