mirror of
https://github.com/kasmtech/ansible
synced 2024-11-12 23:07:16 +00:00
9 lines
214 B
YAML
9 lines
214 B
YAML
- hosts: all
|
|
serial: 1
|
|
gather_facts: no
|
|
tasks:
|
|
- name: Stop Kasm Services
|
|
shell: /opt/kasm/bin/stop
|
|
register: stop_output
|
|
changed_when: '"done" in stop_output.stderr'
|
|
become: true
|