diff --git a/handlers/main.yml b/handlers/main.yml index 0eed299..205e1a7 100644 --- a/handlers/main.yml +++ b/handlers/main.yml @@ -5,9 +5,12 @@ state: restarted scope: "user" when: ansible_service_mgr == "systemd" + XDG_RUNTIME_DIR: /var/run - name: "Reload systemd" ansible.builtin.systemd: daemon_reload: true scope: "user" when: ansible_service_mgr == "systemd" + environment: + XDG_RUNTIME_DIR: /var/run diff --git a/tasks/main.yml b/tasks/main.yml index f87594a..7e4bf98 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -37,10 +37,6 @@ src: traefik.yaml.j2 dest: "/etc/traefik/traefik.yaml" - - name: "Reload systemd" - ansible.builtin.systemd: - daemon_reload: true - scope: "user" notify: - Reload systemd - Restart traefik