File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 12
12
-p"{{ icingadb_database_password }}"
13
13
"{{ icingadb_database_name | default('icingadb') }}"
14
14
15
- - name : MySQL check for IDO schema
15
+ - name : MySQL check for IcingaDB schema
16
16
ansible.builtin.shell : >
17
17
{{ mysqlcmd }}
18
18
-Ns -e "select version from icingadb_schema"
21
21
check_mode : false
22
22
register : _db_schema
23
23
24
- - name : MySQL import IDO schema
24
+ - name : MySQL import IcingaDB schema
25
25
ansible.builtin.shell : >
26
26
{{ mysqlcmd }}
27
27
< {{ icingadb_database_schema }}
Original file line number Diff line number Diff line change 16
16
{% if icingadb_database_key is defined %} sslkey={{ icingadb_database_key }} {%- endif %}
17
17
{% if icingadb_database_ssl_extra_options is defined %} {{ icingadb_database_ssl_extra_options }} {%- endif %}"
18
18
19
- - name : PgSQL check for DB schema
19
+ - name : PgSQL check for IcingaDB schema
20
20
ansible.builtin.shell : >
21
21
{{ _tmp_pgsqlcmd }}
22
22
-w -c "select version from icingadb_schema"
25
25
check_mode : false
26
26
register : _db_schema
27
27
28
- - name : PgSQL import DB schema
28
+ - name : PgSQL import IcingaDB schema
29
29
ansible.builtin.shell : >
30
30
{{ _tmp_pgsqlcmd }}
31
31
-w -f {{ icingadb_database_schema }}
You can’t perform that action at this time.
0 commit comments