From 2b25f20cbb0acbde8fa8abeb0ed67626f024111e Mon Sep 17 00:00:00 2001 From: Anders Schau Knatten Date: Fri, 14 Jun 2024 08:06:26 -0700 Subject: [PATCH] Add missing restart in deploy script --- deploy.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/deploy.sh b/deploy.sh index 2837e60..fc0d95e 100755 --- a/deploy.sh +++ b/deploy.sh @@ -30,4 +30,5 @@ header "Collecting static" python manage.py collectstatic --noinput || exit $? header "Restarting $SERVICE_NAME" +systemctl --no-pager --user restart $SERVICE_NAME || exit $? systemctl --no-pager --user status $SERVICE_NAME || exit $?