summaryrefslogtreecommitdiff
path: root/manifests/config.pp
blob: 30a46aa61cbc57e32030405460b1f6dac4276119 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class ntp::config(
  $config          = $ntp::config,
  $config_template = $ntp::config_template,
  $restrict        = $ntp::restrict,
  $servers         = $ntp::servers,
) {

  file { $config:
    ensure  => file,
    owner   => 0,
    group   => 0,
    mode    => '0644',
    content => template("ntp/${config_template}"),
  }

}