10 lines
218 B
YAML
10 lines
218 B
YAML
- name: install windows applications
|
|
hosts: windows
|
|
tasks:
|
|
- name: install firefox and 7zip
|
|
win_chocolatey:
|
|
name:
|
|
- firefox
|
|
- 7zip
|
|
- notepadplusplus
|
|
state: present
|