--- - name: Restart vaultwarden ansible.builtin.systemd: name: "vaultwarden.service" state: "restarted" enabled: true scope: "user" daemon_reload: true changed_when: false listen: "notification_restart_vaultwarden" ignore_errors: true # noqa: ignore-errors - name: Restart gitea ansible.builtin.systemd: name: "gitea.service" state: "restarted" enabled: true scope: "user" daemon_reload: true changed_when: false listen: "notification_restart_gitea" ignore_errors: true # noqa: ignore-errors - name: Restart immich ansible.builtin.systemd: name: "immich.service" state: "restarted" enabled: true scope: "user" daemon_reload: true changed_when: false listen: "notification_restart_immich" ignore_errors: true # noqa: ignore-errors - name: Restart immich-ml ansible.builtin.systemd: name: "immich-ml.service" state: "restarted" enabled: true scope: "user" daemon_reload: true changed_when: false listen: "notification_restart_immich-ml" ignore_errors: true # noqa: ignore-errors - name: Restart actual-budget ansible.builtin.systemd: name: "actual-budget.service" state: "restarted" enabled: true scope: "user" daemon_reload: true changed_when: false listen: "notification_restart_actual-budget" ignore_errors: true # noqa: ignore-errors - name: Restart paperless ansible.builtin.systemd: name: "paperless.service" state: "restarted" enabled: true scope: "user" daemon_reload: true changed_when: false listen: "notification_restart_paperless" ignore_errors: true # noqa: ignore-errors