2021-09-16 12:35:23 -04:00
|
|
|
- hosts:
|
|
|
|
- agent
|
2021-09-21 18:19:15 +00:00
|
|
|
- web
|
|
|
|
- db
|
|
|
|
serial: 1
|
|
|
|
gather_facts: no
|
2021-09-16 12:35:23 -04:00
|
|
|
tasks:
|
|
|
|
- name: Stop Kasm Services
|
|
|
|
shell: /opt/kasm/bin/stop
|
|
|
|
register: stop_output
|
|
|
|
changed_when: '"done" in stop_output.stderr'
|
|
|
|
become: true
|