2022-11-14 10:48:21 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- hosts: all
|
|
|
|
vars:
|
|
|
|
applet_name: chrome
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: Install applet
|
2023-03-30 04:09:03 +00:00
|
|
|
ansible.windows.win_powershell:
|
|
|
|
script: |
|
|
|
|
tinkerd install --name {{ applet_name }}
|
2022-11-14 10:48:21 +00:00
|
|
|
when: applet_name != 'all'
|