puppet-prod/site/roles/manifests/infra/git/gitea.pp
Ben Vincent 42d8047043 fix: comments in gitea role
- was copy of puppetboard, missed updating the comment
2024-09-03 22:34:48 +10:00

15 lines
365 B
Puppet

# a role to deploy the gitea
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
}
}
}