Install some common packages

This commit is contained in:
L3D 2021-12-20 19:42:55 +01:00
parent e604e146cf
commit 3bc6d9d999
Signed by: l3d
GPG key ID: CD08445BFF4313D1
3 changed files with 13 additions and 0 deletions

View file

@ -1,2 +1,7 @@
---
win_base_init__pass_prefix: 'ansible/windows'
win_base_init__packages:
- git
- Firefox
- mpvio
- vlc

View file

@ -5,5 +5,8 @@
- name: configure hostname
ansible.builtin.include_tasks: hostname.yml
- name: install some packages
ansible.builtin.include_tasks: packages.yml
- name: scan for updates
ansible.builtin.include_tasks: updates.yml

5
tasks/packages.yml Normal file
View file

@ -0,0 +1,5 @@
---
- name: Install git
chocolatey.chocolatey.win_chocolatey:
name: "{{ win_base_init__packages }}"
state: present