puppet-prod/site/roles/manifests/infra/ntp/server.pp
Ben Vincent 2abbfe8feb feat: update all roles for firstrun
- ensure the firstrun is processed before role specific class profiles
2024-05-19 22:11:01 +10:00

12 lines
267 B
Puppet

# a role to deploy a ntp server
class roles::infra::ntp::server {
if $facts['firstrun'] {
include profiles::defaults
include profiles::firstrun::init
}else{
include profiles::defaults
include profiles::base
include profiles::ntp::server
}
}