mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #22955 from terminalmage/dockerio-run-fix
Fix regression introduced yesterday in dockerio module
This commit is contained in:
commit
89fa18500c
1 changed files with 1 additions and 1 deletions
|
@ -1741,7 +1741,7 @@ def _run_wrapper(status, container, func, cmd, *args, **kwargs):
|
|||
return status
|
||||
full_cmd = (
|
||||
'nsenter --target {pid} --mount --uts --ipc --net --pid'
|
||||
' {cmd}'.format(pid=container_pid, cmd=cmd)
|
||||
' -- {cmd}'.format(pid=container_pid, cmd=cmd)
|
||||
)
|
||||
else:
|
||||
raise CommandExecutionError(
|
||||
|
|
Loading…
Add table
Reference in a new issue