[EVO] Utiliser l'inventaire d'ansible
This commit is contained in:
parent
b9baf12530
commit
8d43c3fde5
@ -20,3 +20,13 @@
|
|||||||
dest: /srv/dnsmasq/{{ inventory_hostname }}.conf
|
dest: /srv/dnsmasq/{{ inventory_hostname }}.conf
|
||||||
become: true
|
become: true
|
||||||
notify: Recharger dnsmasq.service
|
notify: Recharger dnsmasq.service
|
||||||
|
|
||||||
|
- name: Déployer le fichier d'hôte en partant de l'inventaire
|
||||||
|
ansible.builtin.template:
|
||||||
|
owner: dnsmasq
|
||||||
|
group: root
|
||||||
|
mode: u=rw,g=r,o=r
|
||||||
|
src: hosts.conf.j2
|
||||||
|
dest: /srv/dnsmasq/ansible_inventory.conf.disabled
|
||||||
|
become: true
|
||||||
|
notify: Recharger dnsmasq.service
|
||||||
|
10
templates/hosts.conf.j2
Normal file
10
templates/hosts.conf.j2
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# {{ ansible_managed }}
|
||||||
|
|
||||||
|
{% for host in groups['all'] %}
|
||||||
|
## BEGIN {{ hostvars[host]['ansible_facts']['fqdn'] }}
|
||||||
|
{% for ip in hostvars[host]['dnsmasq_host_ips'] %}
|
||||||
|
{% set hostnames = hostvars[host]['inventory_hostname'] + hostvars[host]['inventory_hostname_short'] + hostvars[host]['dnsmasq_host_aliases'] %}
|
||||||
|
{{ ip }} {{ hostnames | select() | join(' ') }}
|
||||||
|
{% endfor %}
|
||||||
|
## END {{ hostvars[item]['ansible_facts']['fqdn'] }}
|
||||||
|
{% endfor %}
|
Loading…
Reference in New Issue
Block a user