From 3d00741e7bbd0217b2d176c75e70bb68c8c7c97d Mon Sep 17 00:00:00 2001 From: Victor Phan Date: Tue, 21 Jul 2026 15:31:34 +0700 Subject: [PATCH] feat: add install_services.sh script to configure and restart the shopeebot systemd service --- serverPython/install_services.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/serverPython/install_services.sh b/serverPython/install_services.sh index b58225f..3000016 100644 --- a/serverPython/install_services.sh +++ b/serverPython/install_services.sh @@ -1,5 +1,3 @@ -systemctl unmask shopeebot - cat << 'EOF' > /etc/systemd/system/shopeebot.service [Unit] Description=Shopee Affiliate Bot API @@ -17,5 +15,5 @@ WantedBy=multi-user.target EOF systemctl daemon-reload -systemctl enable shopeebot -systemctl start shopeebot +systemctl restart shopeebot +systemctl status shopeebot