puppet-prod/site/roles/manifests/infra/storage/edgecache.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

13 lines
314 B
Puppet

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