puppet-prod/site/roles/manifests/infra/git/gitea.pp
2024-05-28 23:14:36 +10:00

15 lines
371 B
Puppet

# a role to deploy the puppetboard
class roles::infra::git::gitea {
if $facts['firstrun'] {
include profiles::defaults
include profiles::firstrun::init
}else{
include profiles::defaults
include profiles::base
include profiles::base::datavol
if $facts['enc_role'] == 'roles::infra::git::gitea' {
include profiles::gitea::init
}
}
}