This file is indexed.

/usr/share/pyshared/axiom/batch.tac is in python-axiom 0.6.0-3.

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

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
20
# -*- test-case-name: axiom.test.test_batch -*-

"""
Application configuration for the batch sub-process.

This process reads commands and sends responses via stdio using the JUICE
protocol.  When it's not doing that, it queries various databases for work to
do, and then does it.  The databases which it queries can be controlled by
sending it messages.
"""

from twisted.application import service
from twisted.internet import stdio

from axiom import batch

application = service.Application("Batch Processing App")
svc = service.MultiService()
svc.setServiceParent(application)
stdio.StandardIO(batch.BatchProcessingProtocol(svc, True))