mirror of
https://github.com/containers/podman.git
synced 2025-10-11 16:26:00 +08:00
13 lines
262 B
Go
13 lines
262 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(_ *ExecOptions, _ string, _ *user.ExecUser, _ *spec.Process) error {
|
|
return nil
|
|
}
|