Puppet Class: ntp::archlinux
- Defined in:
- manifests/archlinux.pp
Overview
Definitions for Archlinux
3 4 5 6 7 8 9 10 11 12 13 14 |
# File 'manifests/archlinux.pp', line 3
class ntp::archlinux {
$servers = $ntp::servers
file { '/etc/systemd/timesyncd.conf':
ensure => file,
content => template('ntp/timesyncd.conf.erb'),
}
~> service { 'systemd-timesyncd':
ensure => running,
enable => true,
}
}
|