24 lines
673 B
Go
24 lines
673 B
Go
//go:build freebsd || netbsd || openbsd
|
|
|
|
package config
|
|
|
|
const (
|
|
// OverrideContainersConfig holds the default config path overridden by the root user
|
|
OverrideContainersConfig = "/usr/local/etc/" + _configPath
|
|
|
|
// DefaultContainersConfig holds the default containers config path
|
|
DefaultContainersConfig = "/usr/local/share/" + _configPath
|
|
|
|
// DefaultSignaturePolicyPath is the default value for the
|
|
// policy.json file.
|
|
DefaultSignaturePolicyPath = "/usr/local/etc/containers/policy.json"
|
|
)
|
|
|
|
var defaultHelperBinariesDir = []string{
|
|
"/usr/local/bin",
|
|
"/usr/local/libexec/podman",
|
|
"/usr/local/lib/podman",
|
|
"/usr/local/libexec/podman",
|
|
"/usr/local/lib/podman",
|
|
}
|