mirror of
https://github.com/containers/podman.git
synced 2025-06-10 09:47:25 +08:00
16 lines
236 B
Go
16 lines
236 B
Go
// +build !windows
|
|
|
|
package config
|
|
|
|
// Defaults for linux/unix if none are specified
|
|
const (
|
|
cniConfigDir = "/etc/cni/net.d/"
|
|
)
|
|
|
|
var cniBinDir = []string{
|
|
"/usr/libexec/cni",
|
|
"/usr/lib/cni",
|
|
"/usr/local/lib/cni",
|
|
"/opt/cni/bin",
|
|
}
|