Skip to content

Commit

Permalink
Move to Cloudwatt organisation in github
Browse files Browse the repository at this point in the history
Signed-off-by: Félix Cantournet <[email protected]>
  • Loading branch information
Félix Cantournet committed Jan 19, 2017
1 parent ececc14 commit 34cbcc6
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ deploy:
file_glob: true
on:
tags: true
repo: fcantournet/vault-sync
repo: cloudwatt/vault-sync
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
NAME=vault-sync
AUTHOR=Orange
REGISTRY=docker.io
IMPORT_PATH=github.com/fcantournet/vault-sync
IMPORT_PATH=github.com/cloudwatt/vault-sync
HARDWARE=$(shell uname -m)
VERSION=$(shell git describe --tags --always)
VETARGS?=-asmdecl -atomic -bool -buildtags -copylocks -methods -nilfunc -printf -rangeloops -shift -structtags -unsafeptr
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
### **Vault-sync**

[![Build Status](https://travis-ci.org/fcantournet/vault-sync.svg?branch=master)](https://travis-ci.org/fcantournet/vault-sync)
[![Go Report Card](https://goreportcard.com/badge/github.com/fcantournet/vault-sync)](https://goreportcard.com/report/github.com/fcantournet/vault-sync)
[![Build Status](https://travis-ci.org/cloudwatt/vault-sync.svg?branch=master)](https://travis-ci.org/cloudwatt/vault-sync)
[![Go Report Card](https://goreportcard.com/badge/github.com/cloudwatt/vault-sync)](https://goreportcard.com/report/github.com/cloudwatt/vault-sync)

---
Disclaimer : this started as a fork of the [vaultctl](https://github.com/UKHomeOffice/vaultctl)
Expand Down
2 changes: 1 addition & 1 deletion cmd/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ limitations under the License.

package cmd

import "github.com/fcantournet/vault-sync/pkg/api"
import "github.com/cloudwatt/vault-sync/pkg/api"

var (
// Author is the author of the program
Expand Down
6 changes: 3 additions & 3 deletions cmd/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ import (
"strings"
"time"

"github.com/fcantournet/vault-sync/pkg/api"
"github.com/fcantournet/vault-sync/pkg/utils"
"github.com/fcantournet/vault-sync/pkg/vault"
"github.com/cloudwatt/vault-sync/pkg/api"
"github.com/cloudwatt/vault-sync/pkg/utils"
"github.com/cloudwatt/vault-sync/pkg/vault"

log "github.com/Sirupsen/logrus"
"github.com/codegangsta/cli"
Expand Down
4 changes: 2 additions & 2 deletions cmd/transit.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"os"
"strings"

"github.com/fcantournet/vault-sync/pkg/utils"
"github.com/fcantournet/vault-sync/pkg/vault"
"github.com/cloudwatt/vault-sync/pkg/utils"
"github.com/cloudwatt/vault-sync/pkg/vault"

log "github.com/Sirupsen/logrus"
"github.com/codegangsta/cli"
Expand Down
6 changes: 3 additions & 3 deletions cmd/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ package cmd
import (
"fmt"

"github.com/fcantournet/vault-sync/pkg/api"
"github.com/fcantournet/vault-sync/pkg/utils"
"github.com/fcantournet/vault-sync/pkg/vault"
"github.com/cloudwatt/vault-sync/pkg/api"
"github.com/cloudwatt/vault-sync/pkg/utils"
"github.com/cloudwatt/vault-sync/pkg/vault"

"github.com/codegangsta/cli"
)
Expand Down
2 changes: 1 addition & 1 deletion glide.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package: github.com/fcantournet/vault-sync
package: github.com/cloudwatt/vault-sync
import:
- package: github.com/Sirupsen/logrus
version: ~0.11.0
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package main
import (
"os"

"github.com/fcantournet/vault-sync/cmd"
"github.com/cloudwatt/vault-sync/cmd"
)

// Version get dynamically set to git rev by ldflags at build time
Expand Down
2 changes: 1 addition & 1 deletion pkg/api/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"fmt"
"strings"

"github.com/fcantournet/vault-sync/pkg/utils"
"github.com/cloudwatt/vault-sync/pkg/utils"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion pkg/vault/users.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"net/http"
"strings"

"github.com/fcantournet/vault-sync/pkg/api"
"github.com/cloudwatt/vault-sync/pkg/api"

log "github.com/Sirupsen/logrus"
"io/ioutil"
Expand Down
4 changes: 2 additions & 2 deletions pkg/vault/vault.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"strings"
"time"

"github.com/fcantournet/vault-sync/pkg/api"
"github.com/fcantournet/vault-sync/pkg/utils"
"github.com/cloudwatt/vault-sync/pkg/api"
"github.com/cloudwatt/vault-sync/pkg/utils"

log "github.com/Sirupsen/logrus"
v "github.com/hashicorp/vault/api"
Expand Down

0 comments on commit 34cbcc6

Please sign in to comment.