Puppet Class: chrony::config

Inherits:
chrony
Defined in:
manifests/config.pp

Overview



1
2
3
4
5
6
7
8
9
10
# File 'manifests/config.pp', line 1

class chrony::config inherits chrony {
  file { $config:
    ensure   => file,
    owner    => 0,
    group    => 0,
    mode     => 0644,
    content  => template($config_template),
    notify   => Service['chrony'],
  }
}