mirror of
https://gitea.0xace.cc/ansible-galaxy/hosts.git
synced 2024-11-24 23:06:39 +00:00
17 lines
413 B
YAML
17 lines
413 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: "{{ groups.all }}"
|
|
tags:
|
|
- hosts
|
|
|
|
become: true
|