mirror of
https://github.com/containers/podman.git
synced 2025-12-01 10:38:05 +08:00
This commit vendor pre-release version of `c/common:8483ef6022b4`. It also adapts the code to the new `c/common/libimage` API, which fixes an image listing race that was listing false warnings. fixes: #23331 Signed-off-by: Jan Rodák <hony.com@seznam.cz>
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",
|
|
}
|