module-icingaweb2/manifests/preinstall.pp
2015-04-23 11:26:23 +02:00

18 lines
463 B
Puppet

# == Class icingaweb2::preinstall
#
class icingaweb2::preinstall {
if $::icingaweb2::manage_repo and $::icingaweb2::install_method == 'package' {
case $::operatingsystem {
'RedHat', 'CentOS': {
::icingaweb2::preinstall::redhat { 'icingaweb2':
pkg_repo_version => $::icingaweb2::pkg_repo_version,
}
}
default: {
fail "Managing repositories for ${::operatingsystem} is not supported."
}
}
}
}