From 83e4f181b3381595133b2b9c690e81e0b2747b78 Mon Sep 17 00:00:00 2001 From: bipface Date: Sun, 10 Aug 2025 21:39:49 +1000 Subject: [PATCH] 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.` --- debian/postinst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/postinst b/debian/postinst index dbdbe4b..a190ba4 100644 --- a/debian/postinst +++ b/debian/postinst @@ -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 ;\