Explorar el Código

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 hace 6 años
committed by GitHub
padre
commit
050442af11
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 5 adiciones y 3 borrados
  1. +5
    -3
      roles/matrix-common-after/tasks/start.yml

+ 5
- 3
roles/matrix-common-after/tasks/start.yml Ver fichero

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


Cargando…
Cancelar
Guardar