Added case statements to pick the right package names and providers based on the OS; added skeleton case statement to pick the right settings for different Ubuntu releases.

This commit is contained in:
Nick Chappell 2014-06-28 21:25:51 -07:00
parent ba90a87f8c
commit 934362be4d

View file

@ -9,4 +9,51 @@
class icinga2::params {
##############################
# Package parameters
##############################
#Whether to manage the package repositories
$manage_repos => 'true'
##############################
# Icinga 2 server package parameters
$server_db_type = 'pgsql'
case $operatingsystem {
#Red Hat/CentOS systems:
'RedHat', 'CentOS': {
#Pick the right package provider:
$package_provider = 'yum'
#Icinga 2 server package
$icinga2_server_package = 'icinga2'
}
#Debian/Ubuntu systems:
/^(Debian|Ubuntu)$/: {
#Pick the right package provider:
$package_provider = 'apt'
#Icinga 2 server package
$icinga2_server_package = 'icinga2'
#Set some package repo variables based on the Ubuntu release:
case $operatingsystemrelease {
#For Ubuntu 12.04 Precise Pangolin: http://releases.ubuntu.com/12.04/
'12.04': {
}
#For Ubuntu 14.04 Trusty Tahr: http://releases.ubuntu.com/14.04/
'14.04': {
}
#Fail if we are on any other Ubuntu release:
default: { fail("${operatingsystem} ${operatingsystemrelease} is not a supported Ubuntu release!") }
}
}
#Fail if we're on any other OS:
default: { fail("${operatingsystem} is not supported!") }
}
}