adding new chocolatey conig demo

This commit is contained in:
David Rojas
2020-09-25 06:53:38 -07:00
parent 3d89b8f7a8
commit 8b12f9dcda
4 changed files with 161 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
---
- name: configuring Chocolatey
hosts: windows
vars:
config_item: cacheLocation
state: present
value: C:\chocolatey_temp2
collections:
- chocolatey.chocolatey
tasks:
- name: set configuration parameter
win_chocolatey_config:
name: "{{ config_item }}"
state: "{{ state }}"
value: "{{ value }}"