diff --git a/tasks/manage_node_state.yml b/tasks/manage_node_state.yml index ae49acf..d9c296c 100644 --- a/tasks/manage_node_state.yml +++ b/tasks/manage_node_state.yml @@ -9,6 +9,10 @@ - name: manage_node_state | Populate service facts ansible.builtin.service_facts: +- name: manage_node_state | Debug: Print ansible_facts.services + ansible.builtin.debug: + msg: "{{ ansible_facts.services }}" + - name: manage_node_state | reset failed status (otherwise service can't be stopped) command: "systemctl reset-failed {{ mariadb_systemd_service_name }}" # noqa command-instead-of-module become: true @@ -17,7 +21,7 @@ when: - '"stopped" in mariadb_systemd_service_state' - inventory_hostname == item - - '"failed" in ansible_facts.services[mariadb_systemd_service_name].state' + - "'failed' in ansible_facts.services[mariadb_systemd_service_name].state" - name: manage_node_state | ensure node is fully stopped before continuing ansible.builtin.service: