fix: Change records file deployment

This commit is contained in:
pulsar89.5 2025-03-30 18:15:58 +02:00
parent bd8d50c06d
commit 8b13ab3410
3 changed files with 7 additions and 11 deletions

View File

@ -9,15 +9,18 @@
become: true
- name: Reload dnsmasq.service
become: true
ansible.builtin.systemd:
state: reloaded
name: dnsmasq.service
state: reloaded
become: true
register: dnsmasq_reload
- name: Reload dnsmasq.service on dns servers
become: true
ansible.builtin.systemd:
state: reloaded
name: dnsmasq.service
when: dnsmasq_reload is defined
loop: "{{ dnsmasq_hosts }}"
delegate_to: "{{ item }}"
run_once: true

View File

@ -1,7 +1,8 @@
# {{ ansible_managed }}
# ansible inventory
{%- for host in (groups[dnsmasq_ansible_group] | sort) %}
{%- set hosts = groups[dnsmasq_ansible_group] | sort | reject('equalto', inventory_hostname) %}
{%- for host in hosts %}
{%- set ipv4 = hostvars[host]['ansible_host'] %}
{%- set ipv6_prefix = dnsmasq_ipv6_subnet | split('/') | first %}
{%- set ipv6_suffix = hostvars[host]['ansible_host'] | split('.') | last %}

View File

@ -1,8 +0,0 @@
# {{ ansible_managed }}
{% for specific in dnsmasq_specifics %}
# {{ specific.hostname }}
{% for ip in specific.ips %}
{{ ip }} {{ specific.hostname }}
{% endfor %}
{% endfor %}