icinga escape strings
This commit is contained in:
parent
f3f624be1f
commit
d4ccc3dce0
1 changed files with 2 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue