1
0
Fork 0

fixed map_param

Dieser Commit ist enthalten in:
Sebastian Tobie 2023-04-23 11:26:41 +02:00
Ursprung 7246f9bfcb
Commit 6e1182048e
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -246,7 +246,7 @@ class SystemdUnitModule(AnsibleModule):
def map_param(self, **parammap: str):
"""maps an dict with keys for an section with given params. The key of the dictionary is the parameter and the value is the key in the unitfile. If an parameter has multiple values it adds multiple entries"""
output: list[str] = []
for param, key in parammap:
for param, key in parammap.items():
if self.params[param] is not None:
params = self.params[param]
if isinstance(params, list):