mirror of
https://github.com/containers/podman.git
synced 2025-05-17 15:18:43 +08:00

Instead switch to github.com/moby/sys/user, which we already had as an indirect dependency. Signed-off-by: Matt Heon <mheon@redhat.com>
13 lines
282 B
Go
13 lines
282 B
Go
//go:build !remote
|
|
|
|
package libpod
|
|
|
|
import (
|
|
"github.com/moby/sys/user"
|
|
spec "github.com/opencontainers/runtime-spec/specs-go"
|
|
)
|
|
|
|
func (c *Container) setProcessCapabilitiesExec(options *ExecOptions, user string, execUser *user.ExecUser, pspec *spec.Process) error {
|
|
return nil
|
|
}
|