From 8d74ee72739f3aeb6e039fdc6c71043fb5a80c71 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 10 Jan 2024 13:26:14 -0500 Subject: [PATCH] Remove obsolete worker restart in pvcapid package --- debian/pvc-daemon-api.postinst | 5 ----- 1 file changed, 5 deletions(-) diff --git a/debian/pvc-daemon-api.postinst b/debian/pvc-daemon-api.postinst index 9256a35c..3bedcc62 100644 --- a/debian/pvc-daemon-api.postinst +++ b/debian/pvc-daemon-api.postinst @@ -9,11 +9,6 @@ if systemctl is-active --quiet pvcapid.service; then /usr/share/pvc/pvc-api-db-upgrade systemctl start pvcapid.service fi -# Restart the worker daemon -if systemctl is-active --quiet pvcworkerd.service; then - systemctl stop pvcworkerd.service - systemctl start pvcworkerd.service -fi if [ ! -f /etc/pvc/pvc.conf ]; then echo "NOTE: The PVC client API daemon (pvcapid.service) and the PVC Worker daemon (pvcworkerd.service) have not been started; create a config file at /etc/pvc/pvc.conf, then run the database configuration (/usr/share/pvc/pvc-api-db-upgrade) and start them manually."