Install some common packages
This commit is contained in:
parent
e604e146cf
commit
3bc6d9d999
3 changed files with 13 additions and 0 deletions
|
@ -1,2 +1,7 @@
|
|||
---
|
||||
win_base_init__pass_prefix: 'ansible/windows'
|
||||
win_base_init__packages:
|
||||
- git
|
||||
- Firefox
|
||||
- mpvio
|
||||
- vlc
|
||||
|
|
|
@ -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
5
tasks/packages.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
- name: Install git
|
||||
chocolatey.chocolatey.win_chocolatey:
|
||||
name: "{{ win_base_init__packages }}"
|
||||
state: present
|
Loading…
Reference in a new issue