Skip to content

Commit 151f779

Browse files
author
Lennart Betz
authored
Merge pull request #425 from lbetz/reporting-schema-name
Fix path to reporting db schema
2 parents e6f81b1 + ace32b0 commit 151f779

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

data/common.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ icingaweb2::module::director::db_host: localhost
5959
icingaweb2::module::director::db_name: director
6060
icingaweb2::module::director::db_username: director
6161

62-
icingaweb2::globals::mysql_reporting_schema: /schema/mysql.sql
63-
icingaweb2::globals::pgsql_reporting_schema: /schema/postgresql.sql
62+
icingaweb2::globals::mysql_reporting_schema: /schema/mysql.schema.sql
63+
icingaweb2::globals::pgsql_reporting_schema: /schema/pgsql.schema.sql
6464
icingaweb2::module::reporting::ensure: present
6565
icingaweb2::module::reporting::install_method: git
6666
icingaweb2::module::reporting::git_repository: https://github.com/Icinga/icingaweb2-module-reporting.git

spec/classes/modules/reporting_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106

107107
it {
108108
is_expected.to contain_exec('import icingaweb2::module::reporting schema')
109-
.with_command(%r{^mysql.*\< '/usr/share/icingaweb2/modules/reporting/schema/mysql.sql'$})
109+
.with_command(%r{^mysql.*\< '/usr/share/icingaweb2/modules/reporting/schema/mysql.schema.sql'$})
110110
.with_unless(%r{^mysql.* -Ns -e 'SELECT \* FROM report'$})
111111
}
112112

@@ -204,7 +204,7 @@
204204
it {
205205
is_expected.to contain_exec('import icingaweb2::module::reporting schema')
206206
.with_environment(['PGPASSWORD=foo'])
207-
.with_command(%r{^psql.*-w -f /usr/share/icingaweb2/modules/reporting/schema/postgresql.sql$})
207+
.with_command(%r{^psql.*-w -f /usr/share/icingaweb2/modules/reporting/schema/pgsql.schema.sql$})
208208
.with_unless(%r{^psql.*-w -c 'SELECT \* FROM report'$})
209209
}
210210

0 commit comments

Comments
 (0)