aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/containers/common/pkg/config/config_darwin.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/containers/common/pkg/config/config_darwin.go')
-rw-r--r--vendor/github.com/containers/common/pkg/config/config_darwin.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/vendor/github.com/containers/common/pkg/config/config_darwin.go b/vendor/github.com/containers/common/pkg/config/config_darwin.go
index 5abb51f30..0ab9e0294 100644
--- a/vendor/github.com/containers/common/pkg/config/config_darwin.go
+++ b/vendor/github.com/containers/common/pkg/config/config_darwin.go
@@ -4,6 +4,14 @@ import (
"os"
)
+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
+)
+
// podman remote clients on darwin cannot use unshare.isRootless() to determine the configuration file locations.
func customConfigFile() (string, error) {
if path, found := os.LookupEnv("CONTAINERS_CONF"); found {