This file is indexed.

/usr/share/edubuntu-server/services/manager/configure is in edubuntu-server-host 14.02.2.

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
#!/usr/bin/python3
import os

environ = {}
environ['manager_domain_name'] = os.environ['domain_fqdn']

for key, value in environ.items():
    print("%s=%s" % (key, value))