* renamed role to roles * renamed profile to profiles * cleaned up all profiles/roles/hieradata to match new paths
11 lines
198 B
Puppet
11 lines
198 B
Puppet
# this is the base class, which will be used by all servers
|
|
class profiles::base (
|
|
Array $ntp_servers,
|
|
) {
|
|
class { 'chrony':
|
|
servers => $ntp_servers,
|
|
}
|
|
|
|
include profiles::yum::global
|
|
}
|