Install streamdeck

This commit is contained in:
L3D 2021-12-26 20:11:42 +01:00
parent 3045c7598a
commit dbcd157bad
Signed by: l3d
GPG key ID: CD08445BFF4313D1
3 changed files with 11 additions and 0 deletions

3
defaults/main.yml Normal file
View file

@ -0,0 +1,3 @@
---
win_streamdeck__packages:
- streamdeck

3
tasks/main.yml Normal file
View file

@ -0,0 +1,3 @@
---
- name: install some streamdeck specific packages
ansible.builtin.include_tasks: packages.yml

5
tasks/packages.yml Normal file
View file

@ -0,0 +1,5 @@
---
- name: Install some streamdeck packages
chocolatey.chocolatey.win_chocolatey:
name: "{{ win_streamdeck__packages }}"
state: present