mirror of
https://github.com/containers/podman.git
synced 2025-11-13 01:29:06 +08:00
autocomplete podman search --filter
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
This commit is contained in:
10
vendor/github.com/containers/common/libnetwork/network/interface.go
generated
vendored
10
vendor/github.com/containers/common/libnetwork/network/interface.go
generated
vendored
@@ -1,5 +1,5 @@
|
||||
//go:build linux
|
||||
// +build linux
|
||||
//go:build linux || freebsd
|
||||
// +build linux freebsd
|
||||
|
||||
package network
|
||||
|
||||
@@ -25,14 +25,8 @@ import (
|
||||
const (
|
||||
// defaultNetworkBackendFileName is the file name for sentinel file to store the backend
|
||||
defaultNetworkBackendFileName = "defaultNetworkBackend"
|
||||
// cniConfigDir is the directory where cni configuration is found
|
||||
cniConfigDir = "/etc/cni/net.d/"
|
||||
// cniConfigDirRootless is the directory in XDG_CONFIG_HOME for cni plugins
|
||||
cniConfigDirRootless = "cni/net.d/"
|
||||
// netavarkConfigDir is the config directory for the rootful network files
|
||||
netavarkConfigDir = "/etc/containers/networks"
|
||||
// netavarkRunDir is the run directory for the rootful temporary network files such as the ipam db
|
||||
netavarkRunDir = "/run/containers/networks"
|
||||
|
||||
// netavarkBinary is the name of the netavark binary
|
||||
netavarkBinary = "netavark"
|
||||
|
||||
10
vendor/github.com/containers/common/libnetwork/network/interface_freebsd.go
generated
vendored
Normal file
10
vendor/github.com/containers/common/libnetwork/network/interface_freebsd.go
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
package network
|
||||
|
||||
const (
|
||||
// cniConfigDir is the directory where cni configuration is found
|
||||
cniConfigDir = "/usr/local/etc/cni/net.d/"
|
||||
// netavarkConfigDir is the config directory for the rootful network files
|
||||
netavarkConfigDir = "/usr/local/etc/containers/networks"
|
||||
// netavarkRunDir is the run directory for the rootful temporary network files such as the ipam db
|
||||
netavarkRunDir = "/var/run/containers/networks"
|
||||
)
|
||||
10
vendor/github.com/containers/common/libnetwork/network/interface_linux.go
generated
vendored
Normal file
10
vendor/github.com/containers/common/libnetwork/network/interface_linux.go
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
package network
|
||||
|
||||
const (
|
||||
// cniConfigDir is the directory where cni configuration is found
|
||||
cniConfigDir = "/etc/cni/net.d/"
|
||||
// netavarkConfigDir is the config directory for the rootful network files
|
||||
netavarkConfigDir = "/etc/containers/networks"
|
||||
// netavarkRunDir is the run directory for the rootful temporary network files such as the ipam db
|
||||
netavarkRunDir = "/run/containers/networks"
|
||||
)
|
||||
Reference in New Issue
Block a user