diff --git a/examples/director-mysql.pp b/examples/director-mysql.pp index e17e04f3..fb7123f8 100644 --- a/examples/director-mysql.pp +++ b/examples/director-mysql.pp @@ -17,7 +17,6 @@ db_type => 'mysql', db_password => $db_password, import_schema => true, - config_backend => 'db', default_admin_username => 'icingaadmin', default_admin_password => 'icinga', require => Mysql::Db['icingaweb2'], diff --git a/examples/director-pgsql.pp b/examples/director-pgsql.pp index f5b241f5..9a442b92 100644 --- a/examples/director-pgsql.pp +++ b/examples/director-pgsql.pp @@ -15,7 +15,6 @@ db_type => 'pgsql', db_password => $db_password, import_schema => true, - config_backend => 'db', default_admin_username => 'icingaadmin', default_admin_password => 'icinga', require => Postgresql::Server::Db['icingaweb2'], diff --git a/examples/icingadb-mysql.pp b/examples/icingadb-mysql.pp index 96dcea4c..341e82e3 100644 --- a/examples/icingadb-mysql.pp +++ b/examples/icingadb-mysql.pp @@ -14,7 +14,6 @@ db_type => 'mysql', db_password => $db_password, import_schema => true, - config_backend => 'db', default_admin_username => 'icingaadmin', default_admin_password => 'icinga', require => Mysql::Db['icingaweb2'], diff --git a/examples/icingadb-pgsql.pp b/examples/icingadb-pgsql.pp index 7657ccb8..e1484f86 100644 --- a/examples/icingadb-pgsql.pp +++ b/examples/icingadb-pgsql.pp @@ -25,7 +25,6 @@ db_type => 'pgsql', db_password => $db_password, import_schema => true, - config_backend => 'db', default_admin_username => 'icingaadmin', default_admin_password => 'icinga', require => Postgresql::Server::Db['icingaweb2'], diff --git a/examples/icingaweb2-mysql.pp b/examples/icingaweb2-mysql.pp index 35c47a87..949cb852 100644 --- a/examples/icingaweb2-mysql.pp +++ b/examples/icingaweb2-mysql.pp @@ -14,7 +14,6 @@ db_type => 'mysql', db_password => $db_password, import_schema => true, - config_backend => 'db', default_admin_username => 'icingaadmin', default_admin_password => 'icinga', require => Mysql::Db['icingaweb2'], diff --git a/examples/icingaweb2-pgsql.pp b/examples/icingaweb2-pgsql.pp index 0f821328..28ee1a6e 100644 --- a/examples/icingaweb2-pgsql.pp +++ b/examples/icingaweb2-pgsql.pp @@ -25,7 +25,6 @@ db_type => 'pgsql', db_password => $db_password, import_schema => true, - config_backend => 'db', default_admin_username => 'icingaadmin', default_admin_password => 'icinga', require => Postgresql::Server::Db['icingaweb2'], diff --git a/examples/idoreports-mysql.pp b/examples/idoreports-mysql.pp index 9481c061..4d7aba50 100644 --- a/examples/idoreports-mysql.pp +++ b/examples/idoreports-mysql.pp @@ -29,7 +29,6 @@ db_type => 'mysql', db_password => $db_password, import_schema => true, - config_backend => 'db', default_admin_username => 'icingaadmin', default_admin_password => 'icinga', require => Mysql::Db['icingaweb2'], diff --git a/examples/idoreports-pgsql.pp b/examples/idoreports-pgsql.pp index 9c6b710b..f6b6ab27 100644 --- a/examples/idoreports-pgsql.pp +++ b/examples/idoreports-pgsql.pp @@ -27,7 +27,6 @@ db_type => 'pgsql', db_password => $db_password, import_schema => true, - config_backend => 'db', default_admin_username => 'icingaadmin', default_admin_password => 'icinga', require => Postgresql::Server::Db['icingaweb2'], diff --git a/examples/monitoring-mysql.pp b/examples/monitoring-mysql.pp index fb902858..5527ecd2 100644 --- a/examples/monitoring-mysql.pp +++ b/examples/monitoring-mysql.pp @@ -14,7 +14,6 @@ db_type => 'mysql', db_password => $db_password, import_schema => true, - config_backend => 'db', default_admin_username => 'icingaadmin', default_admin_password => 'icinga', require => Mysql::Db['icingaweb2'], diff --git a/examples/monitoring-pgsql.pp b/examples/monitoring-pgsql.pp index c235dd8d..8ec4dff3 100644 --- a/examples/monitoring-pgsql.pp +++ b/examples/monitoring-pgsql.pp @@ -25,7 +25,6 @@ db_type => 'pgsql', db_password => $db_password, import_schema => true, - config_backend => 'db', default_admin_username => 'icingaadmin', default_admin_password => 'icinga', require => Postgresql::Server::Db['icingaweb2'], diff --git a/examples/reporting-mysql.pp b/examples/reporting-mysql.pp index e4ec4e5d..abdbba49 100644 --- a/examples/reporting-mysql.pp +++ b/examples/reporting-mysql.pp @@ -29,7 +29,6 @@ db_type => 'mysql', db_password => $db_password, import_schema => true, - config_backend => 'db', default_admin_username => 'icingaadmin', default_admin_password => 'icinga', require => Mysql::Db['icingaweb2'], diff --git a/examples/reporting-pgsql.pp b/examples/reporting-pgsql.pp index c618934c..0e2d9556 100644 --- a/examples/reporting-pgsql.pp +++ b/examples/reporting-pgsql.pp @@ -27,7 +27,6 @@ db_type => 'pgsql', db_password => $db_password, import_schema => true, - config_backend => 'db', default_admin_username => 'icingaadmin', default_admin_password => 'icinga', require => Postgresql::Server::Db['icingaweb2'], diff --git a/examples/x509-mysql.pp b/examples/x509-mysql.pp index 2011809c..70a96b74 100644 --- a/examples/x509-mysql.pp +++ b/examples/x509-mysql.pp @@ -14,7 +14,6 @@ db_type => 'mysql', db_password => $db_password, import_schema => true, - config_backend => 'db', default_admin_username => 'icingaadmin', default_admin_password => 'icinga', require => Mysql::Db['icingaweb2'], diff --git a/examples/x509-pgsql.pp b/examples/x509-pgsql.pp index 3418c0ac..745c94fb 100644 --- a/examples/x509-pgsql.pp +++ b/examples/x509-pgsql.pp @@ -12,7 +12,6 @@ db_type => 'pgsql', db_password => $db_password, import_schema => true, - config_backend => 'db', default_admin_username => 'icingaadmin', default_admin_password => 'icinga', require => Postgresql::Server::Db['icingaweb2'],