Files
ansible-pull/roles/server/tasks/system_setup/hosts.yml
rene aeaf0af01c moved editing the hosts file to role server
because only servers might be outside the home network
and connect with wireguard
2022-02-25 14:12:21 +01:00

12 lines
306 B
YAML

- name: system setup | /etc/hosts | populate
lineinfile:
path: "/etc/hosts"
line: "{{ item.ip }} {{ item.fqdn }}"
mode: '0644'
owner: 'root'
group: 'root'
loop:
- { ip: '192.168.1.240', fqdn: 'gitlab.social.my-wan.de'}
when:
- set_hosts is defined
- set_hosts == true