1
0
Fork 0
mirror of https://github.com/containers/ansible-podman-collections.git synced 2026-02-04 07:11:49 +00:00

Remove unnecessary quotes in podman_container_exec module

Fix #714
Signed-off-by: Sagi Shnaidman <sshnaidm@redhat.com>
This commit is contained in:
Sagi Shnaidman 2024-02-24 20:53:41 +02:00 committed by Sergey
parent de490b8b37
commit f2dcda6a1d

View file

@ -162,7 +162,7 @@ def run_container_exec(module: AnsibleModule) -> dict:
to_text(value, errors='surrogate_or_strict')
exec_options += ['--env',
'%s="%s"' % (key, value)]
'%s=%s' % (key, value)]
if privileged:
exec_options.append('--privileged')