Skip to content

Commit 55b13eb

Browse files
committed
Fix quoting of password within mysql command for IDO schema import
1 parent 8922263 commit 55b13eb

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
bugfixes:
2+
- "Fix quoting of password within mysql command for IDO database schema import."

roles/icinga2/tasks/features/idomysql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
{% if icinga2_dict_features.idomysql.ssl_cipher is defined %} --ssl-cipher "{{ icinga2_dict_features.idomysql.ssl_cipher }}" {%- endif %}
3434
{% if icinga2_dict_features.idomysql.extra_options is defined %} {{ icinga2_dict_features.idomysql.extra_options }} {%- endif %}
3535
-u "{{ icinga2_dict_features.idomysql.user | default('icinga2') }}"
36-
-p{{ icinga2_dict_features.idomysql.password | quote }}"
36+
-p{{ icinga2_dict_features.idomysql.password | quote }}
3737
"{{ icinga2_dict_features.idomysql.database | default('icinga2') }}"
3838
3939
- name: MySQL check for IDO schema

0 commit comments

Comments
 (0)