Fix missing semicolons in debian postinst script (#1158)

These missing semicolons cause some errors to be printed during installation, such as: `Failed to stop bin-systemctl.mount: Unit bin-systemctl.mount not loaded.`
This commit is contained in:
bipface 2025-08-10 21:39:49 +10:00 committed by GitHub
parent 724946a834
commit 83e4f181b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

4
debian/postinst vendored
View File

@ -19,8 +19,8 @@ fi
echo ""
echo 3proxy installed.
if /bin/systemctl >/dev/null 2>&1; then \
/bin/systemctl stop 3proxy.service \
/bin/systemctl start 3proxy.service \
/bin/systemctl stop 3proxy.service ;\
/bin/systemctl start 3proxy.service ;\
echo use ;\
echo " "systemctl start 3proxy.service ;\
echo to start proxy ;\