mirror of
https://github.com/kasmtech/ansible
synced 2024-12-12 13:02:32 +00:00
12 lines
241 B
YAML
12 lines
241 B
YAML
- hosts:
|
|
- agent
|
|
- web
|
|
- db
|
|
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
|