Puppet Class: systemd::timesyncd::config
- Inherits:
- systemd::timesyncd
- Defined in:
- manifests/timesyncd/config.pp
Overview
1 2 3 4 5 6 7 8 9 10 |
# File 'manifests/timesyncd/config.pp', line 1
class systemd::timesyncd::config inherits systemd::timesyncd {
file { '/etc/systemd/timesyncd.conf':
ensure => 'present',
owner => 'root',
group => 'root',
mode => '0644',
content => template("${module_name}/timesyncd.erb"),
}
}
|