Files
podman/libpod/oci_conmon_exec_freebsd.go
Matt Heon 9fb57d346f Cease using deprecated runc userlookup
Instead switch to github.com/moby/sys/user, which we already had
as an indirect dependency.

Signed-off-by: Matt Heon <mheon@redhat.com>
2024-02-02 11:02:43 -05:00

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
}