icinga escape strings

This commit is contained in:
mwiegand 2022-09-05 16:26:08 +02:00
parent f3f624be1f
commit d4ccc3dce0

View file

@ -14,7 +14,8 @@
if key.endswith('_interval'):
return value
else:
return f'"{value}"'
escaped_value = value.replace('$', '$$').replace('"', '\\"')
return f'"{escaped_value}"'
elif isinstance(value, (list, set)):
return '[' + ', '.join(render_value(e) for e in sorted(value)) + ']'
else: