added chocolatey featrue demo
This commit is contained in:
17
playbooks/infrastructure/chocolatey_features.yml
Normal file
17
playbooks/infrastructure/chocolatey_features.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
- name: enabling or disabling chocolatey features
|
||||
hosts: windows
|
||||
|
||||
vars:
|
||||
feature: stopOnFirstPackageFailure
|
||||
state: enabled
|
||||
|
||||
collections:
|
||||
- chocolatey.chocolatey
|
||||
|
||||
tasks:
|
||||
|
||||
- name: enable or disable Chocolatey features
|
||||
win_chocolatey_feature:
|
||||
name: "{{ feature }}"
|
||||
state: "{{ state }}"
|
||||
Reference in New Issue
Block a user