mirror of
https://github.com/DO1JLR/ansible_playbook_servers.git
synced 2024-09-14 19:53:56 +02:00
improve mdns options
This commit is contained in:
parent
6038f9f061
commit
9bf658d31b
6 changed files with 12 additions and 3 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -94,3 +94,6 @@
|
|||
[submodule "roles/do1jlr.rtl_nic_firmware"]
|
||||
path = roles/do1jlr.rtl_nic_firmware
|
||||
url = https://github.com/DO1JLR/ansible_role_rtl_nic_firmware.git
|
||||
[submodule "roles/do1jlr.avahi_client"]
|
||||
path = roles/do1jlr.avahi_client
|
||||
url = https://github.com/roles-ansible/ansible_role_avahi_client.git
|
||||
|
|
|
@ -16,4 +16,8 @@ firewall_allowed_tcp_ports:
|
|||
- "53"
|
||||
- "80"
|
||||
- "443"
|
||||
firewall_allowed_udp_ports: ['53']
|
||||
|
||||
# open firewall for DNS and MDNS
|
||||
firewall_allowed_udp_ports:
|
||||
- '53'
|
||||
- '5353'
|
||||
|
|
1
roles/do1jlr.avahi_client
Submodule
1
roles/do1jlr.avahi_client
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 6065af448c4813ad5195270215fcbe4c2b742a5d
|
|
@ -1 +1 @@
|
|||
Subproject commit 609bf0508ffa47fd790442995ed13674b665f62e
|
||||
Subproject commit f960e8d938fbe73f5f12bde696ebaad95c66c39c
|
|
@ -1 +1 @@
|
|||
Subproject commit 833d7442fe46481aef7b6f502e0ee786522ef0b6
|
||||
Subproject commit c4716f60430037f95779064a0de812fde871ea0b
|
1
site.yml
1
site.yml
|
@ -12,6 +12,7 @@
|
|||
- {role: bat, tags: [packages, bat], when: [ansible_os_family == 'Debian']}
|
||||
- {role: unattended_upgrades, tags: [default, unattended, unattended_upgrades, security], become: true, when: ansible_distribution == 'Debian'}
|
||||
- {role: do1jlr.rtl_nic_firmware, tags: [apu, rtl_nic, firmware]}
|
||||
- {role: do1jlr.avahi_client, tags: [avahi, avahi_client]}
|
||||
|
||||
- name: user specific roles for all hosts
|
||||
hosts: all
|
||||
|
|
Loading…
Reference in a new issue