2023-03-09 20:47:42 +00:00
|
|
|
---
|
|
|
|
- name: Verify
|
|
|
|
hosts: all
|
|
|
|
gather_facts: false
|
|
|
|
tasks:
|
2023-04-12 22:22:52 +00:00
|
|
|
- ansible.builtin.include_vars:
|
2023-03-09 20:47:42 +00:00
|
|
|
file: ../../defaults/main.yml
|
|
|
|
|
2023-03-10 13:18:19 +00:00
|
|
|
- name: Try and stop and remove plex
|
2023-03-09 20:47:42 +00:00
|
|
|
community.docker.docker_container:
|
2023-03-10 13:18:19 +00:00
|
|
|
name: "{{ plex_container_name }}"
|
2023-03-09 20:47:42 +00:00
|
|
|
state: absent
|
|
|
|
register: result
|
|
|
|
|
2023-03-10 13:18:19 +00:00
|
|
|
- name: Check if plex is stopped
|
2023-03-09 20:47:42 +00:00
|
|
|
ansible.builtin.assert:
|
|
|
|
that:
|
|
|
|
- not result.changed
|