From 2d0af3bc4e46676c4713d1837d95a6c8482c0e04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Kn=C3=B6ppler?= <6317548+theCalcaholic@users.noreply.github.com> Date: Thu, 1 Feb 2024 00:14:27 +0100 Subject: [PATCH] updates/1.53.1.sh: Fix possible race condition MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tobias Knöppler <6317548+theCalcaholic@users.noreply.github.com> --- updates/1.53.1.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/updates/1.53.1.sh b/updates/1.53.1.sh index 61346648..344027fd 100644 --- a/updates/1.53.1.sh +++ b/updates/1.53.1.sh @@ -9,4 +9,5 @@ mv /etc/apache2/sites-available/nextcloud.conf /etc/apache2/sites-available/001- a2ensite 001-nextcloud install_template systemd/notify_push.service.sh /etc/systemd/system/notify_push.service systemctl daemon-reload -bash -c "sleep 2 && systemctl reload apache2 && systemctl restart notify_push" \ No newline at end of file +systemctl restart notify_push +bash -c "sleep 2 && systemctl reload apache2" \ No newline at end of file