installing bonjour
This commit is contained in:
parent
40e91f9b6f
commit
cbfb331fe3
3 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,3 @@
|
||||||
# win_ansible_role_zeroconf
|
# win_ansible_role_zeroconf
|
||||||
|
|
||||||
Try to install zeroconf on windows
|
install Bonjour - zeroconf on windows
|
||||||
|
|
3
tasks/main.yml
Normal file
3
tasks/main.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
- name: install bonjour
|
||||||
|
ansible.builtin.include_tasks: packages.yml
|
5
tasks/packages.yml
Normal file
5
tasks/packages.yml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
- name: install bonjour
|
||||||
|
chocolatey.chocolatey.win_chocolatey:
|
||||||
|
name: 'bonjour'
|
||||||
|
state: present
|
Loading…
Reference in a new issue