Commit 92f9f50f by Michael DeHaan

Merge pull request #6339 from threatgrid/systemd-template-svc-fix

systemd template services must not discard template part
parents 8d3e2fe7 44ebd3f4
......@@ -412,11 +412,13 @@ class LinuxService(Service):
# adjust the service name to account for template service unit files
index = name.find('@')
if index != -1:
name = name[:index+1]
template_name = name[:index+1]
else:
template_name = name
self.__systemd_unit = None
for line in out.splitlines():
if line.startswith(name):
if line.startswith(template_name):
self.__systemd_unit = name
return True
return False
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment