plugins/main_windows.go

37 lines
1.2 KiB
Go
Raw Normal View History

//go:build windows
// +build windows
2018-06-20 01:31:12 +00:00
package main
import (
"fmt"
"os"
"path/filepath"
"strings"
"github.com/docker/docker/pkg/reexec"
"github.com/containernetworking/cni/pkg/version"
bv "github.com/containernetworking/plugins/pkg/utils/buildversion"
hostlocal "github.com/containernetworking/plugins/plugins/ipam/host-local"
"github.com/containernetworking/plugins/plugins/main/windows/win-bridge"
"github.com/containernetworking/plugins/plugins/main/windows/win-overlay"
2018-06-20 01:31:12 +00:00
"github.com/containernetworking/plugins/plugins/meta/flannel"
)
func main() {
os.Args[0] = filepath.Base(os.Args[0])
reexec.Register("flannel", flannel.Main)
reexec.Register("host-local", hostlocal.Main)
reexec.Register("win-bridge", winbridge.Main)
reexec.Register("win-overlay", winoverlay.Main)
reexec.Register("flannel.exe", flannel.Main)
reexec.Register("host-local.exe", hostlocal.Main)
reexec.Register("win-bridge.exe", winbridge.Main)
reexec.Register("win-overlay.exe", winoverlay.Main)
2018-06-20 01:31:12 +00:00
if !reexec.Init() {
_, _ = fmt.Fprintln(os.Stderr, bv.BuildString("plugins"))
_, _ = fmt.Fprintf(os.Stderr, "CNI protocol versions supported: %s\n", strings.Join(version.All.SupportedVersions(), ", "))
}
}