Merge branch 'Update-RPM-Systemd-behavior' into 'main'

service restart if running, instructs to start if not

See merge request veilid/veilid!82
This commit is contained in:
TC 2023-07-18 01:58:02 +00:00
commit 93a8815f81

View File

@ -47,6 +47,13 @@ echo "Congratulations! To start your Veilid node and set it to start at boot, ru
%postun %postun
systemctl daemon-reload systemctl daemon-reload
%posttrans
if systemctl is-active --quiet veilid-server.service; then
systemctl restart veilid-server.service
else
echo "Veilid-Server is installed but not currently running. Configure the service to start immediatly and at boot time by running the following command: systemctl enable --now veilid-server.service"
fi
%changelog %changelog
* Sun Jul 2 2023 TC <tc@veilid.org> * Sun Jul 2 2023 TC <tc@veilid.org>
- experimental RPM building - experimental RPM building