Fix missing semicolons in debian postinst script

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-09 09:49:26 +10:00 committed by GitHub
parent 2966836dfa
commit 50aaab0d4e
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 ""
echo 3proxy installed. echo 3proxy installed.
if /bin/systemctl >/dev/null 2>&1; then \ if /bin/systemctl >/dev/null 2>&1; then \
/bin/systemctl stop 3proxy.service \ /bin/systemctl stop 3proxy.service ;\
/bin/systemctl start 3proxy.service \ /bin/systemctl start 3proxy.service ;\
echo use ;\ echo use ;\
echo " "systemctl start 3proxy.service ;\ echo " "systemctl start 3proxy.service ;\
echo to start proxy ;\ echo to start proxy ;\