This repository has been archived on 2023-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
homeserver-ansible/tasks/set_host.yml

17 lines
412 B
YAML

- name: Determine if host is up at static IP
local_action: "command ping -c 1 {{ local_ip }}"
become: no
ignore_errors: true
changed_when: false
register: up_static
- name: Switch ansible_host to fallback IP
set_fact:
ansible_host: "{{ fallback_host }}"
when: up_static.rc != 0
- name: Switch ansible_host to static IP
set_fact:
ansible_host: "{{ local_ip }}"
when: up_static.rc == 0