2018-04-14 06:20:25 +08:00
|
|
|
package util
|
|
|
|
|
2021-03-02 02:07:58 +08:00
|
|
|
import (
|
|
|
|
"github.com/containers/buildah/define"
|
|
|
|
)
|
|
|
|
|
2018-04-14 06:20:25 +08:00
|
|
|
const (
|
2021-03-02 02:07:58 +08:00
|
|
|
// DefaultRuntime if containers.conf fails.
|
|
|
|
DefaultRuntime = define.DefaultRuntime
|
2018-04-14 06:20:25 +08:00
|
|
|
)
|
2018-06-05 05:36:26 +08:00
|
|
|
|
|
|
|
var (
|
|
|
|
// DefaultCapabilities is the list of capabilities which we grant by
|
|
|
|
// default to containers which are running under UID 0.
|
2021-03-02 02:07:58 +08:00
|
|
|
DefaultCapabilities = define.DefaultCapabilities
|
|
|
|
|
2018-06-26 00:39:57 +08:00
|
|
|
// DefaultNetworkSysctl is the list of Kernel parameters which we
|
|
|
|
// grant by default to containers which are running under UID 0.
|
2021-03-02 02:07:58 +08:00
|
|
|
DefaultNetworkSysctl = define.DefaultNetworkSysctl
|
2018-06-05 05:36:26 +08:00
|
|
|
)
|