module-icingaweb2/manifests/preinstall.pp

19 lines
463 B
ObjectPascal
Raw Normal View History

2015-02-20 12:24:40 +01:00
# == 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."
}
}
}
2015-02-20 12:24:40 +01:00
}