fix linter errors

This commit is contained in:
Sergey Malyuk
2025-12-12 10:32:18 +03:00
parent c2eff7cd25
commit c1311a77c4
5 changed files with 20 additions and 20 deletions

View File

@@ -2,7 +2,7 @@
- name: Converge
hosts: all
roles:
- role: genlab.ufw
- role: genlab.common.ufw
disable_ipv6: true
rules:
- rule: allow
@@ -12,10 +12,10 @@
direction: in
comment: "Allow dnsmasq to serve DNS queries on the given interface"
- role: genlab.dnsmasq
iface: lo
domain: adm.local
dns_port: 5300
nodes:
- role: genlab.common.dnsmasq
dnsmasq_iface: lo
dnsmasq_domain: adm.local
dnsmasq_dns_port: 5300
dnsmasq_nodes:
- name: hub
ip: 127.0.0.1

View File

@@ -13,7 +13,7 @@
tasks:
- name: "Test the output of the `dig` command"
changed_when: false
register: dig
register: dnsmasq_dig
failed_when: 'dig.stdout != "127.0.0.1"'
ansible.builtin.command:
cmd: "dig @127.0.0.1 -p 5353 hub.adm.vpn +short"