Matrix Docker Ansible eploy
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- ---
-
- - name: Check existence of matrix-mx-puppet-steam service
- ansible.builtin.stat:
- 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
-
- - name: Ensure matrix-mx-puppet-steam.service doesn't exist
- ansible.builtin.file:
- path: "/etc/systemd/system/matrix-mx-puppet-steam.service"
- state: absent
|