freeipa / ansible-freeipa

Ansible roles and modules for FreeIPA
GNU General Public License v3.0
495 stars 233 forks source link

[ipaclient][ipareplica] Include open port checks #1266

Open EmptyByte opened 3 months ago

EmptyByte commented 3 months ago

Feature request for a task that ensures all ports are open before attempting any installation/modifications:

- name: "Ensure required ports are open"
  ansible.builtin.wait_for:
    host: "{{ ipaserver }}"
    port: "{{ item }}"
    state: started
    delay: 0
    timeout: 3
  loop: [80, 88, 389, 464]