fix: define missing .cache directory (#221)

Reviewed-on: https://git.query.consul/unkinben/puppet-prod/pulls/221
This commit is contained in:
Ben Vincent 2025-03-13 21:48:47 +11:00
parent a309244713
commit e0c3a23424

View File

@ -1,6 +1,11 @@
# profiles::firstrun::complete
class profiles::firstrun::complete {
file {'/root/.cache':
ensure => 'directory',
owner => 'root',
group => 'root',
}
file {'/root/.cache/puppet_firstrun_complete':
ensure => 'file',
owner => 'root',