From c8022c1a18219c281909a950c656454c959e91cd Mon Sep 17 00:00:00 2001 From: Slavi Pantaleev Date: Thu, 23 Feb 2023 08:35:45 +0200 Subject: [PATCH] Remove useless explicit daemon reload in matrix-user-creator The next task asks for a daemon reload, so there's no need to do it twice. --- roles/custom/matrix-user-creator/tasks/setup.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/roles/custom/matrix-user-creator/tasks/setup.yml b/roles/custom/matrix-user-creator/tasks/setup.yml index d53726bd..bcf2fd65 100644 --- a/roles/custom/matrix-user-creator/tasks/setup.yml +++ b/roles/custom/matrix-user-creator/tasks/setup.yml @@ -8,10 +8,6 @@ # Suppress logging to avoid dumping the credentials to the shell no_log: true -- name: Ensure systemd is reloaded before starting the homeserver - ansible.builtin.service: - daemon_reload: true - - name: Ensure homeserver is started before creating Matrix users ansible.builtin.service: name: "matrix-{{ matrix_homeserver_implementation }}.service"