Skip to content

Commit 1c17d5d

Browse files
authored
Merge pull request #375 from Icinga/fix/367-missing-port-icingaweb-config
Add port to Icinga Web's own database connection
2 parents b676d05 + a397366 commit 1c17d5d

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
3+
bugfixes:
4+
- Fix bug where the port for Icinga Web's own database connection was not set in ``resources.ini``.

roles/icingaweb2/tasks/manage_icingaweb_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
type: db
5555
db: "{{ icingaweb2_db['type'] | default('mysql') }}"
5656
host: "{{ icingaweb2_db['host'] }}"
57+
port: "{{ icingaweb2_db['port'] | default(omit) }}"
5758
dbname: "{{ icingaweb2_db['name'] }}"
5859
username: "{{ icingaweb2_db['user'] }}"
5960
password: "{{ icingaweb2_db['password'] }}"

0 commit comments

Comments
 (0)