From b0176804dc2ec274885ef759f8f013e0301a2279 Mon Sep 17 00:00:00 2001 From: vvzvlad Date: Tue, 18 Apr 2023 01:51:21 +0700 Subject: [PATCH] remove unused --- vestasync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vestasync.py b/vestasync.py index d0d7bda..4228e47 100755 --- a/vestasync.py +++ b/vestasync.py @@ -165,7 +165,7 @@ def create_autogit_systemd(c): #check statuses - for service in ['pushgit.timer', 'pushgit_inotify.service', 'pushgit.service']: + for service in ['pushgit.timer', 'pushgit_inotify.service']: active = c.run(f'systemctl is-active {service} || true', hide=True).stdout.strip() enabled = c.run(f'systemctl is-enabled {service} || true', hide=True).stdout.strip() print(f"{service}: {active}, {enabled}")