Create skeleton case statement for DB schema loading later on.

This commit is contained in:
Nick Chappell 2014-07-02 19:32:24 -07:00
parent cd067dced4
commit 8d400511a1

View file

@ -98,4 +98,17 @@ class icinga2::server::install::execs inherits icinga2::server {
include icinga2::params
case $icinga::params::server_db_type {
#Schema loading for MySQL:
'mysql': {
}
#Schema loading for Postgres:
'pgsql': {
}
default: { fail("${icinga2::params::server_db_type} is not supported!") }
}
}