Przeglądaj źródła

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 lat temu
committed by GitHub
rodzic
commit
050442af11
Nie znaleziono w bazie danych klucza dla tego podpisu ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 5 dodań i 3 usunięć
  1. +5
    -3
      roles/matrix-common-after/tasks/start.yml

+ 5
- 3
roles/matrix-common-after/tasks/start.yml Wyświetl plik

@@ -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.


Ładowanie…
Anuluj
Zapisz