From fbe5ce750c60a62acb07d7e8fe8c103640d87d85 Mon Sep 17 00:00:00 2001 From: bkbilly Date: Sun, 30 Oct 2022 03:33:14 +0200 Subject: [PATCH] don't start service on initial installation --- lnxlink/config.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lnxlink/config.py b/lnxlink/config.py index 387f735..1dbdb01 100755 --- a/lnxlink/config.py +++ b/lnxlink/config.py @@ -147,8 +147,6 @@ def setup_systemd(config_path): subprocess.call(cmd, shell=True) cmd = f"{sudo} systemctl {cmd_user} daemon-reload" subprocess.call(cmd, shell=True) - cmd = f"{sudo} systemctl {cmd_user} restart lnxlink.service" - subprocess.call(cmd, shell=True) if __name__ == '__main__':