matrix-docker-ansible-deploy/roles/custom/matrix-bridge-mx-puppet-steam/tasks/setup_uninstall.yml

21 lines
648 B
YAML
Raw Normal View History

2020-07-01 11:46:58 +00:00
---
- name: Check existence of matrix-mx-puppet-steam service
2022-07-18 08:22:05 +00:00
ansible.builtin.stat:
2020-07-01 11:46:58 +00:00
path: "/etc/systemd/system/matrix-mx-puppet-steam.service"
register: matrix_mx_puppet_steam_service_stat
- when: matrix_mx_puppet_steam_service_stat.stat.exists | bool
block:
- name: Ensure matrix-mx-puppet-steam is stopped
ansible.builtin.service:
name: matrix-mx-puppet-steam
state: stopped
enabled: false
daemon_reload: true
2020-07-01 11:46:58 +00:00
- name: Ensure matrix-mx-puppet-steam.service doesn't exist
ansible.builtin.file:
path: "/etc/systemd/system/matrix-mx-puppet-steam.service"
state: absent