summaryrefslogtreecommitdiff
path: root/vendor/github.com/containers/common/pkg/config/config_windows.go
blob: b2cd751a159baf975fd2626ea75b36e42f408ff5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package config

import "os"

const (
	// _configPath is the path to the containers/containers.conf
	// inside a given config directory.
	_configPath = "\\containers\\containers.conf"

	// DefaultContainersConfig holds the default containers config path
	DefaultContainersConfig = ""

	// DefaultSignaturePolicyPath is the default value for the
	// policy.json file.
	DefaultSignaturePolicyPath = "/etc/containers/policy.json"

	// Mount type for mounting host dir
	_typeBind = "bind"
)

// userConfigPath returns the path to the users local config that is
// not shared with other users. It uses $APPDATA/containers...
func userConfigPath() (string, error) {
	return os.Getenv("APPDATA") + _configPath, nil
}

// overrideContainersConfigPath returns the path to the system wide
// containers config folder. It users $PROGRAMDATA/containers...
func overrideContainersConfigPath() (string, error) {
	return os.Getenv("ProgramData") + _configPath, nil
}

var defaultHelperBinariesDir = []string{
	"C:\\Program Files\\RedHat\\Podman",
}