Untitled

 avatar
unknown
plain_text
a year ago
387 B
201
Indexable
---
- hosts: all
  become: true
  roles:
    - role: choco
      # Ensure chocolatey is up-to-date (optional)
      choco_upgrade: yes

  tasks:
    - name: Install Notepad++ with Chocolatey
      win_chocolatey:
        name: notepadplusplus
        state: latest

    - name: Install Google Chrome with Chocolatey
      win_chocolatey:
        name: googlechrome
        state: latest
Editor is loading...