- download gpg keys if gpgkey is defined - ensure the profiles::defaults is called first
20 lines
413 B
Puppet
20 lines
413 B
Puppet
# profiles::firstrun::complete
|
|
class profiles::firstrun::complete {
|
|
|
|
file { '/root/.cache':
|
|
ensure => 'directory',
|
|
owner => 'root',
|
|
group => 'root',
|
|
mode => '0750',
|
|
}
|
|
|
|
file {'/root/.cache/puppet_firstrun_complete':
|
|
ensure => 'file',
|
|
owner => 'root',
|
|
group => 'root',
|
|
mode => '0750',
|
|
content => 'firstrun completed',
|
|
require => File['/root/.cache'],
|
|
}
|
|
}
|