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