hosts/tasks/main.yaml
2021-12-22 19:16:52 +03:00

17 lines
425 B
YAML

---
- block:
- name: add ip address of all hosts to all hosts
lineinfile:
dest: /etc/hosts
regexp: '.*{{ item }} {{ item.split(".")[0] }}$'
line: "{{ hostvars[item].ansible_host }} {{ item }} {{ item.split('.')[0] }}"
state: present
when:
- hostvars[item].ansible_host is defined
- pin_hosts
with_items: "{{ ansible_play_hosts_all }}"
tags:
- hosts
become: true