Skip to content

Commit 9af2420

Browse files
Fix naming IcingaDB schema tasks (#193)
1 parent 6873d02 commit 9af2420

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

roles/icingadb/tasks/manage_schema_mysql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
-p"{{ icingadb_database_password }}"
1313
"{{ icingadb_database_name | default('icingadb') }}"
1414
15-
- name: MySQL check for IDO schema
15+
- name: MySQL check for IcingaDB schema
1616
ansible.builtin.shell: >
1717
{{ mysqlcmd }}
1818
-Ns -e "select version from icingadb_schema"
@@ -21,7 +21,7 @@
2121
check_mode: false
2222
register: _db_schema
2323

24-
- name: MySQL import IDO schema
24+
- name: MySQL import IcingaDB schema
2525
ansible.builtin.shell: >
2626
{{ mysqlcmd }}
2727
< {{ icingadb_database_schema }}

roles/icingadb/tasks/manage_schema_pgsql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
{% if icingadb_database_key is defined %} sslkey={{ icingadb_database_key }} {%- endif %}
1717
{% if icingadb_database_ssl_extra_options is defined %} {{ icingadb_database_ssl_extra_options }} {%- endif %}"
1818
19-
- name: PgSQL check for DB schema
19+
- name: PgSQL check for IcingaDB schema
2020
ansible.builtin.shell: >
2121
{{ _tmp_pgsqlcmd }}
2222
-w -c "select version from icingadb_schema"
@@ -25,7 +25,7 @@
2525
check_mode: false
2626
register: _db_schema
2727

28-
- name: PgSQL import DB schema
28+
- name: PgSQL import IcingaDB schema
2929
ansible.builtin.shell: >
3030
{{ _tmp_pgsqlcmd }}
3131
-w -f {{ icingadb_database_schema }}

0 commit comments

Comments
 (0)