mariadb: Korrigiere bind-Adresse für Monit-Überwachung

This commit is contained in:
phil 2022-06-09 13:19:17 +02:00
parent 7cc01cfd5d
commit 415a6055e8
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
- name: "monit | Mysql-Nutzer anlegen"
mysql_user:
name: "{{ monit_sql_user }}"
host: "localhost"
host: "{{ mariadb.bind_address|default('localhost') }}"
password: "{{ monit_sql_password }}"
state: present
login_unix_socket: "{{ mysql_socket }}"