This file is indexed.

/usr/share/pyshared/provisioningserver/dns/templates/named.conf.template is in python-maas-provisioningserver 1.2+bzr1373+dfsg-0ubuntu1~12.04.6.

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
include "{{named_rndc_conf_path}}";

# Zone declarations.
{{for zone in zones}}
zone "{{zone.zone_name}}" {
    type master;
    file "{{zone.target_path}}";
};
{{endfor}}