1 2 3 4 5 6 7 8 9 10 11 12 13 14
- name: wait for ssh to be available ansible.builtin.wait_for: host: "{{ ansible_host }}" port: "{{ ansible_port }}" timeout: 300 delegate_to: localhost vars: ansible_connection: local - name: set hostname import_tasks: set_hostname.yaml - name: execute join-domain.sh import_tasks: join_domain.yaml