mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-17 20:54:57 +00:00
8 lines
218 B
YAML
8 lines
218 B
YAML
---
|
|
|
|
- name: Ensure Matrix services stopped
|
|
ansible.builtin.service:
|
|
name: "{{ item.name }}"
|
|
state: stopped
|
|
with_items: "{{ matrix_systemd_services_list | sort (attribute='priority,name', reverse=true) }}"
|