Ansible/playbook/windows/choco/installBrave.yml
James Tombleson d43d21157c windows updates can be parsed
Figured out how to get the returned values back.  Getting into choco now.
2019-04-08 08:21:28 -07:00

13 lines
219 B
YAML

- name: Install Brave Browser from Choco
hosts: windows
tasks:
- name: Install Package
win_chocolatey:
name: brave
state: present
register: output
- debug: msg="{{ output }}"