/usr/share/edubuntu-server/services/rdns/configure is in edubuntu-server-host 15.01build1.
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 | #!/usr/bin/python3
import os
environ = {}
environ['rdns_domain_name'] = os.environ['domain_fqdn']
environ['rdns_domain_servers'] = os.environ['services_directory']
environ['rdns_subnet'] = os.environ['network_subnet']
for key, value in environ.items():
print("%s=%s" % (key, value))
|