Files
podman/vendor/go.podman.io/common/pkg/config/config_darwin.go
2025-09-01 12:33:04 +02:00

29 lines
815 B
Go

package config
const (
// overrideContainersConfig holds the default config path overridden by the root user.
overrideContainersConfig = "/etc/" + _configPath
// defaultContainersConfig holds the default containers config path.
defaultContainersConfig = "/usr/share/" + _configPath
// DefaultSignaturePolicyPath is the default value for the
// policy.json file.
DefaultSignaturePolicyPath = "/etc/containers/policy.json"
)
var defaultHelperBinariesDir = []string{
// Relative to the binary directory
"$BINDIR/../libexec/podman",
// Homebrew install paths
"/usr/local/opt/podman/libexec/podman",
"/opt/homebrew/opt/podman/libexec/podman",
"/opt/homebrew/bin",
"/usr/local/bin",
// default paths
"/usr/local/libexec/podman",
"/usr/local/lib/podman",
"/usr/libexec/podman",
"/usr/lib/podman",
}