Browse Source

Merge pull request #611 from xshadow/silence_in_check_mode

Make ansible check mode runs silent, for non idempotent tasks
pull/614/head
Slavi Pantaleev 5 years ago
committed by GitHub
parent
commit
050442af11
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions
  1. +5
    -3
      roles/matrix-common-after/tasks/start.yml

+ 5
- 3
roles/matrix-common-after/tasks/start.yml View File

@@ -1,21 +1,23 @@
---

- name: Ensure systemd reloaded
- name: Ensure systemd is reloaded
service:
daemon_reload: yes

- name: Ensure Matrix services stopped
- name: Ensure Matrix services are stopped
service:
name: "{{ item }}"
state: stopped
with_items: "{{ matrix_systemd_services_list }}"
when: not ansible_check_mode

- name: Ensure Matrix services started
- name: Ensure Matrix services are started
service:
name: "{{ item }}"
enabled: yes
state: started
with_items: "{{ matrix_systemd_services_list }}"
when: not ansible_check_mode

# If we check service state immediately, we may succeed,
# because it takes some time for the service to attempt to start and actually fail.


Loading…
Cancel
Save