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
|
|
|
|
|
2022-11-25 15:17:54 +00:00
|
|
|
- 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
|
|
|
|
2022-11-25 15:17:54 +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
|