27 lines
700 B
YAML
27 lines
700 B
YAML
---
|
|
- name: Stop Ouranos Sandbox Uranian Hosts
|
|
hosts: localhost
|
|
gather_facts: false
|
|
vars:
|
|
uranian_hosts:
|
|
- oberon
|
|
- portia
|
|
- ariel
|
|
- puck
|
|
- miranda
|
|
- sycorax
|
|
- prospero
|
|
- rosalind
|
|
- titania
|
|
tasks:
|
|
- name: Stop Uranian host containers
|
|
ansible.builtin.command:
|
|
cmd: incus stop {{ item }} --project ouranos
|
|
loop: "{{ uranian_hosts }}"
|
|
register: stop_result
|
|
failed_when: stop_result.rc != 0 and 'not running' not in stop_result.stderr
|
|
changed_when: stop_result.rc == 0
|
|
|
|
- name: Display completion message
|
|
ansible.builtin.debug:
|
|
msg: "🐾 Uranian hosts stopped gracefully" |