This file is indexed.

/usr/share/doc/pyro/examples/autoreconnect/server.py is in pyro-examples 1:3.14-1.1.

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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Autoreconnect server
# uses the Name Server

import time
import Pyro.naming
import Pyro.core
from Pyro.errors import NamingError

class testobject(Pyro.core.ObjBase):
	def __init__(self):
		Pyro.core.ObjBase.__init__(self)
	def method(self,arg):
		print 'Method called with',arg
		print 'You can now try to stop this server with ctrl-C'
		time.sleep(1)


print 'Searching Naming Service...'
daemon = Pyro.core.Daemon()
locator = Pyro.naming.NameServerLocator()
ns = locator.getNS()

try:
	ns.createGroup(":test")
except NamingError:
	pass

daemon.useNameServer(ns)

# connect new instance, but using persistent mode
daemon.connectPersistent(testobject(),':test.autoreconnect')

# enter the service loop.
print 'Server started.'
daemon.requestLoop()