Explorar el Código

Fix systemd_path being undefined breakage

Regression since #681 (Github Pull Request).

Fixes #715 (Github Issue).
pull/717/head
Slavi Pantaleev hace 5 años
padre
commit
4dbec2470f
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      roles/matrix-dynamic-dns/tasks/uninstall.yml

+ 2
- 2
roles/matrix-dynamic-dns/tasks/uninstall.yml Ver fichero

@@ -2,7 +2,7 @@


- name: Check existence of matrix-dynamic-dns service - name: Check existence of matrix-dynamic-dns service
stat: stat:
path: "{{ systemd_path }}/matrix-dynamic-dns.service"
path: "{{ matrix_systemd_path }}/matrix-dynamic-dns.service"
register: matrix_dynamic_dns_service_stat register: matrix_dynamic_dns_service_stat


- name: Ensure matrix-dynamic-dns is stopped - name: Ensure matrix-dynamic-dns is stopped
@@ -14,7 +14,7 @@


- name: Ensure matrix-dynamic-dns.service doesn't exist - name: Ensure matrix-dynamic-dns.service doesn't exist
file: file:
path: "{{ systemd_path }}/matrix-dynamic-dns.service"
path: "{{ matrix_systemd_path }}/matrix-dynamic-dns.service"
state: absent state: absent
when: "matrix_dynamic_dns_service_stat.stat.exists" when: "matrix_dynamic_dns_service_stat.stat.exists"




Cargando…
Cancelar
Guardar