puppet-prod/site/profiles/manifests/firstrun/complete.pp
Ben Vincent dde8d5978d feat: firstrun improvements
- add fact to detect firstrun
- run a limited subset of classes on firstrun
- firstrun: includes:
  - vault ca certificates
  - yum/apt repositories
  - fast-install packages with an exec
2024-05-19 21:28:14 +10:00

12 lines
253 B
Puppet

# profiles::firstrun::complete
class profiles::firstrun::complete {
file {'/root/.cache/puppet_firstrun_complete':
ensure => 'file',
owner => 'root',
group => 'root',
mode => '0750',
content => 'firstrun completed',
}
}