mirror of https://github.com/jumpserver/jumpserver
12 lines
204 B
YAML
12 lines
204 B
YAML
|
---
|
||
|
|
||
|
- hosts: all
|
||
|
vars:
|
||
|
applet_name: chrome
|
||
|
|
||
|
tasks:
|
||
|
- name: Install applet
|
||
|
ansible.windows.win_shell:
|
||
|
"tinkerd install --name {{ applet_name }}"
|
||
|
when: applet_name != 'all'
|