16 lines
479 B
Puppet
16 lines
479 B
Puppet
# profiles::cobbler::init
|
|
class profiles::cobbler::init (
|
|
) {
|
|
# wait for enc_role to be populated, needed for hieradata to match
|
|
if $facts['enc_role'] == 'roles::infra::cobbler::server' {
|
|
include profiles::cobbler::config
|
|
include profiles::cobbler::install
|
|
include profiles::cobbler::selinux
|
|
include profiles::cobbler::service
|
|
|
|
Class['profiles::cobbler::install']
|
|
-> Class['profiles::cobbler::config']
|
|
-> Class['profiles::cobbler::selinux']
|
|
}
|
|
}
|