*: appc/cni -> containernetworking/cni
authorStefan Junker <mail@stefanjunker.de>
Wed, 4 May 2016 14:06:05 +0000 (16:06 +0200)
committerStefan Junker <mail@stefanjunker.de>
Fri, 6 May 2016 14:40:27 +0000 (16:40 +0200)
The project has been moved so internally we simply rename everything.
Consumers are recommended to update their vendored version of cni.

invoke/delegate.go
invoke/exec.go
invoke/find_test.go
ip/link.go
ipam/ipam.go
ns/ns_test.go
skel/skel.go
testhelpers/testhelpers_test.go
types/args_test.go

index 0a8198c..ddf1d17 100644 (file)
@@ -19,7 +19,7 @@ import (
        "os"
        "strings"
 
-       "github.com/appc/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/types"
 )
 
 func DelegateAdd(delegatePlugin string, netconf []byte) (*types.Result, error) {
index 337bfcb..a85eede 100644 (file)
@@ -21,7 +21,7 @@ import (
        "os"
        "os/exec"
 
-       "github.com/appc/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/types"
 )
 
 func pluginErr(err error, output []byte) error {
index 4135538..be4cc2d 100644 (file)
@@ -19,7 +19,7 @@ import (
        "io/ioutil"
        "path/filepath"
 
-       "github.com/appc/cni/pkg/invoke"
+       "github.com/containernetworking/cni/pkg/invoke"
        . "github.com/onsi/ginkgo"
        . "github.com/onsi/gomega"
 )
index 1ba529d..df16812 100644 (file)
@@ -20,7 +20,7 @@ import (
        "net"
        "os"
 
-       "github.com/appc/cni/pkg/ns"
+       "github.com/containernetworking/cni/pkg/ns"
        "github.com/vishvananda/netlink"
 )
 
index f0adfb7..d9fbff7 100644 (file)
@@ -18,9 +18,9 @@ import (
        "fmt"
        "os"
 
-       "github.com/appc/cni/pkg/invoke"
-       "github.com/appc/cni/pkg/ip"
-       "github.com/appc/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/invoke"
+       "github.com/containernetworking/cni/pkg/ip"
+       "github.com/containernetworking/cni/pkg/types"
 
        "github.com/vishvananda/netlink"
 )
index 7ad882f..a901eb3 100644 (file)
@@ -22,8 +22,8 @@ import (
        "os/exec"
        "path/filepath"
 
-       "github.com/appc/cni/pkg/ns"
-       "github.com/appc/cni/pkg/testhelpers"
+       "github.com/containernetworking/cni/pkg/ns"
+       "github.com/containernetworking/cni/pkg/testhelpers"
        . "github.com/onsi/ginkgo"
        . "github.com/onsi/gomega"
 )
index 5c3532d..7347b07 100644 (file)
@@ -22,7 +22,7 @@ import (
        "log"
        "os"
 
-       "github.com/appc/cni/pkg/types"
+       "github.com/containernetworking/cni/pkg/types"
 )
 
 // CmdArgs captures all the arguments passed in to the plugin
index ce328f0..62d4585 100644 (file)
@@ -25,7 +25,7 @@ import (
 
        "golang.org/x/sys/unix"
 
-       "github.com/appc/cni/pkg/testhelpers"
+       "github.com/containernetworking/cni/pkg/testhelpers"
        . "github.com/onsi/ginkgo"
        . "github.com/onsi/gomega"
 )
index 23aaf81..61fd223 100644 (file)
@@ -17,7 +17,7 @@ package types_test
 import (
        "reflect"
 
-       . "github.com/appc/cni/pkg/types"
+       . "github.com/containernetworking/cni/pkg/types"
 
        . "github.com/onsi/ginkgo"
        . "github.com/onsi/ginkgo/extensions/table"