Skip to content

Commit

Permalink
move key definitions to the front
Browse files Browse the repository at this point in the history
  • Loading branch information
b4ldr committed Jun 8, 2016
1 parent 839e287 commit 6115aa7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -93,20 +93,20 @@
require => Package[$package_name],
notify => Service[$service_name];
}
concat::fragment{'knot_server':
target => $conf_file,
content => template($server_template),
order => '01',
}
concat::fragment{'key_head':
target => $conf_file,
content => "keys {\n",
order => '09',
order => '01',
}
concat::fragment{'key_foot':
target => $conf_file,
content => "}\n",
order => '11',
order => '03',
}
concat::fragment{'knot_server':
target => $conf_file,
content => template($server_template),
order => '10',
}
file { [$zonesdir, $zone_subdir, $conf_dir]:
ensure => directory,
Expand Down
2 changes: 1 addition & 1 deletion manifests/tsig.pp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
concat::fragment{ "knot_key_${name}":
target => $::knot::conf_file,
content => template($template),
order => '10',
order => '02',
}
}

0 comments on commit 6115aa7

Please sign in to comment.