mirror of
https://github.com/roles-ansible/ansible_role_avahi_client.git
synced 2024-08-16 16:09:49 +02:00
17 lines
511 B
YAML
17 lines
511 B
YAML
---
|
|
- name: run optional versionscheck
|
|
ansible.builtin.include_tasks: versioncheck.yml
|
|
when: submodules_versioncheck|bool
|
|
|
|
- name: gather os specific variables
|
|
ansible.builtin.include_vars: "{{ item }}"
|
|
with_first_found:
|
|
- "vars/{{ ansible_os_family }}.yml"
|
|
- "vars/os_fallback.yml"
|
|
|
|
- name: install mdns requirements
|
|
ansible.builtin.include_tasks: install.yml
|
|
|
|
- name: configure /etc/nsswitch.conf
|
|
ansible.builtin.include_tasks: nsswitch.yml
|
|
when: avahi_client__configure_nsswitch | bool
|