vendor latest c/common

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
Paul Holzinger
2024-06-04 17:49:02 +02:00
parent 7c5c60bc39
commit 15a4e1dffd
14 changed files with 63 additions and 42 deletions

View File

@@ -0,0 +1,23 @@
//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",
}