Solved timer bug

This commit is contained in:
2025-08-19 00:33:00 +02:00
parent fc4df980c5
commit 73b7d2728e
2 changed files with 3 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ def get_service_name(systemctl_id, software_name, suffix=""):
if suffix is False:
sfx = "" # no suffix at all
elif suffix == "" or suffix is None:
sfx = ".timer" if sid.endswith("@") else ".service"
sfx = ".service"
else:
sfx = "." + str(suffix).strip().lower()