mirror of
https://github.com/containers/podman.git
synced 2025-05-21 00:56:36 +08:00
podman image scp never enter podman user NS
Podman image scp should never enter the Podman UserNS unless it needs to. This allows for a sudo exec.Command to transfer images to and from rootful storage. If this command is run using sudo, the simple sudo podman save/load does not work, machinectl/su is necessary here. This modification allows for both rootful and rootless transfers, and an overall change of scp to be more of a wrapper function for different load and save calls as well as the ssh component Signed-off-by: cdoern <cdoern@redhat.com>
This commit is contained in:
@ -224,3 +224,12 @@ func MovePauseProcessToScope(pausePidPath string) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// CreateSCPCommand takes an existing command, appends the given arguments and returns a configured podman command for image scp
|
||||
func CreateSCPCommand(cmd *exec.Cmd, command []string) *exec.Cmd {
|
||||
cmd.Args = append(cmd.Args, command...)
|
||||
cmd.Env = os.Environ()
|
||||
cmd.Stderr = os.Stderr
|
||||
cmd.Stdout = os.Stdout
|
||||
return cmd
|
||||
}
|
||||
|
Reference in New Issue
Block a user