From 0f513261ebf9b4f5d0e6cc2fe3cbc49753259168 Mon Sep 17 00:00:00 2001 From: vvzvlad Date: Tue, 18 Apr 2023 18:38:06 +0700 Subject: [PATCH] revert "chmod +x" --- vestasync.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vestasync.py b/vestasync.py index bc01b2a..660944d 100755 --- a/vestasync.py +++ b/vestasync.py @@ -117,6 +117,7 @@ def create_automac_systemd(c): for local_path, remote_path in file_paths.items(): c.put(local_path, remote_path) + c.run(f"chmod +x {remote_path}") #reload c.run("systemctl daemon-reload") @@ -154,6 +155,7 @@ def create_autogit_systemd(c): for local_path, remote_path in file_paths.items(): c.put(local_path, remote_path) + c.run(f"chmod +x {remote_path}") #reload c.run("systemctl daemon-reload")