2024-08-26 20:23:59 +07:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Verify slave
|
|
|
|
hosts: all
|
|
|
|
gather_facts: false
|
|
|
|
tasks:
|
2024-08-26 22:42:14 +07:00
|
|
|
- name: COMMAND | Check if mariadb is running # noqa: command-instead-of-module
|
2024-08-26 20:23:59 +07:00
|
|
|
ansible.builtin.command: "systemctl is-active mariadb"
|
|
|
|
register: mariadb_is_running
|
|
|
|
changed_when: false
|
|
|
|
failed_when: mariadb_is_running.rc != 0
|