init.yml 613 B

12345678910111213141516171819202122
  1. ---
  2. - include: ../evaluate_groups.yml
  3. vars:
  4. # Do not allow adding hosts during upgrade.
  5. g_new_master_hosts: []
  6. g_new_node_hosts: []
  7. - include: ../initialize_facts.yml
  8. - name: Ensure firewall is not switched during upgrade
  9. hosts: oo_all_hosts
  10. tasks:
  11. - name: Check if iptables is running
  12. command: systemctl status iptables
  13. changed_when: false
  14. failed_when: false
  15. register: service_iptables_status
  16. - name: Set fact os_firewall_use_firewalld FALSE for iptables
  17. set_fact:
  18. os_firewall_use_firewalld: false
  19. when: "'Active: active' in service_iptables_status.stdout"