16 lines
343 B
Go
16 lines
343 B
Go
//go:build !remote
|
|
|
|
package abi
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
// Default path for system runtime state
|
|
const defaultRunPath = "/var/run"
|
|
|
|
// SetupRootless in a NOP for freebsd as it only configures the rootless userns on linux.
|
|
func (ic *ContainerEngine) SetupRootless(_ context.Context, noMoveProcess bool, cgroupMode string) error {
|
|
return nil
|
|
}
|