mirror of https://github.com/containers/podman.git
27 lines
486 B
Go
27 lines
486 B
Go
package config
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/containers/storage/pkg/unshare"
|
|
selinux "github.com/opencontainers/selinux/go-selinux"
|
|
)
|
|
|
|
func selinuxEnabled() bool {
|
|
return selinux.GetEnabled()
|
|
}
|
|
|
|
func customConfigFile() (string, error) {
|
|
if path, found := os.LookupEnv("CONTAINERS_CONF"); found {
|
|
return path, nil
|
|
}
|
|
if unshare.IsRootless() {
|
|
path, err := rootlessConfigPath()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return path, nil
|
|
}
|
|
return OverrideContainersConfig, nil
|
|
}
|