init.yml 659 B

123456789101112131415161718192021222324
  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_oo_option_facts.yml
  8. - include: ../initialize_facts.yml
  9. - name: Ensure firewall is not switched during upgrade
  10. hosts: oo_all_hosts
  11. tasks:
  12. - name: Check if iptables is running
  13. command: systemctl status iptables
  14. changed_when: false
  15. failed_when: false
  16. register: service_iptables_status
  17. - name: Set fact os_firewall_use_firewalld FALSE for iptables
  18. set_fact:
  19. os_firewall_use_firewalld: false
  20. when: "'Active: active' in service_iptables_status.stdout"