~ubuntu-branches/ubuntu/raring/maas/raring-security

« back to all changes in this revision

Viewing changes to src/provisioningserver/dns/templates/named.conf.template

  • Committer: Package Import Robot
  • Author(s): Andres Rodriguez
  • Date: 2012-07-17 08:28:36 UTC
  • mfrom: (1.1.16)
  • Revision ID: package-import@ubuntu.com-20120717082836-ucb2vou8tqg353eq
Tags: 0.1+bzr777+dfsg-0ubuntu1
* New upstream release
* Only run 'maas' command as root. (LP: #974046)
  - debian/extras/maas: Check id.
  - debian/maas.install: Install in 'sbin'.
* debian/maas.postinst:
  - restart apache2 after everything gets processed.
  - Update version to handle upgrades.
* debian/extras/maas-provision: Add wrapper to access 'maasprovisiong'
  command line.
* debian/patches/99_temporary_fix_path.patch: Dropped. No longer needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
include "{{named_rndc_conf_path}}";
2
2
 
3
 
# Zone declarations
 
3
# Zone declarations.
4
4
{{for zone in zones}}
5
 
zone "{{zone.name}}" {
 
5
zone "{{zone.zone_name}}" {
6
6
    type master;
7
7
    file "{{zone.target_path}}";
8
8
};
9
9
{{endfor}}
10
10
 
11
 
{{for rev_zone in rev_zones}}
12
 
zone "{{rev_zone.name}}" {
 
11
# Reverse zone declarations.
 
12
{{for zone in zones}}
 
13
zone "{{zone.reverse_zone_name}}" {
13
14
    type master;
14
 
    file "{{rev_zone.target_path}}";
 
15
    file "{{zone.target_reverse_path}}";
15
16
};
16
17
{{endfor}}