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:
parent
de490b8b37
commit
f2dcda6a1d
1 changed files with 1 additions and 1 deletions
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue