2023-08-10 13:55:18 +00:00
|
|
|
- hosts: all
|
2021-09-21 18:19:15 +00:00
|
|
|
serial: 1
|
|
|
|
gather_facts: no
|
2021-09-16 16:35:23 +00:00
|
|
|
tasks:
|
|
|
|
- name: Stop Kasm Services
|
|
|
|
shell: /opt/kasm/bin/stop
|
|
|
|
register: stop_output
|
|
|
|
changed_when: '"done" in stop_output.stderr'
|
|
|
|
become: true
|