Skip to content

Commit ce7d2de

Browse files
committed
ref(deisctl): change go package to deis/deis/deisctl
1 parent 5bc4484 commit ce7d2de

16 files changed

Lines changed: 114 additions & 114 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ $ ssh-add ~/.vagrant.d/insecure_private_key
5151

5252
## Provision Deis
5353

54-
Install the [deisctl utility](https://github.com/deis/deisctl#installation) used to provision and operate Deis.
54+
Install the [deisctl utility](https://github.com/deis/deis/deisctl#installation) used to provision and operate Deis.
5555

5656
```console
5757
$ curl -sSL http://deis.io/deisctl/install.sh | sudo sh

contrib/gce/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Let's build a Deis cluster in Google's Compute Engine!
66

77
This assumes you have a couple of items installed already:
88

9-
* [deisctl](https://github.com/deis/deisctl)
9+
* [deisctl](https://github.com/deis/deis/deisctl)
1010
* `git` (Available via Homebrew or Xcode Command Line Tools)
1111
* A clone of the Deis repository (`git clone https://github.com/deis/deis.git`)
1212
* You are running commands from the a cloned `deis` folder (`cd deis` after cloning)

deisctl/CHANGELOG.md

Lines changed: 83 additions & 83 deletions
Large diffs are not rendered by default.

deisctl/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ ADD https://storage.googleapis.com/golang/go1.3.linux-amd64.tar.gz /tmp/
44
RUN tar -C /usr/local -xzf /tmp/go1.3.linux-amd64.tar.gz
55
RUN apt-get update && apt-get install -yq git mercurial
66
ENV PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/go/bin:/go/bin
7-
ADD . /go/src/github.com/deis/deisctl
7+
ADD . /go/src/github.com/deis/deis/deisctl
88
ADD systemd /tmp/package/etc/systemd/system
99
ADD units /tmp/package/var/lib/deis/units
1010
ADD hooks /tmp/package/var/lib/deis/hooks
1111
ADD deis-version /tmp/package/etc/deis-version
12-
ENV GOPATH /go:/go/src/github.com/deis/deisctl/Godeps/_workspace
13-
WORKDIR /go/src/github.com/deis/deisctl
12+
ENV GOPATH /go:/go/src/github.com/deis/deis/deisctl/Godeps/_workspace
13+
WORKDIR /go/src/github.com/deis/deis/deisctl
1414
RUN go get github.com/tools/godep
1515
RUN godep go install -v -a -ldflags '-s' ./...
1616
RUN mkdir -p /tmp/package/opt/bin && cp /go/bin/deisctl /tmp/package/opt/bin/deisctl

deisctl/Godeps/Godeps.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deisctl/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ test: test-style
3131

3232
package:
3333
rm -f package
34-
docker build -t deis/deisctl .
34+
docker build -t deis/deis/deisctl .
3535
mkdir -p package
36-
-docker cp `docker run -d deis/deisctl`:/tmp/deisctl.tar.gz package/
36+
-docker cp `docker run -d deis/deis/deisctl`:/tmp/deisctl.tar.gz package/
3737
mv package/deisctl.tar.gz package/deisctl-v`cat deis-version`.tar.gz

deisctl/backend/fleet/list_units.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
"github.com/coreos/fleet/machine"
1111
"github.com/coreos/fleet/schema"
12-
"github.com/deis/deisctl/utils"
12+
"github.com/deis/deis/deisctl/utils"
1313
)
1414

1515
// initialize tabwriter on stdout

deisctl/client/client.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package client
33
import (
44
"errors"
55

6-
"github.com/deis/deisctl/backend"
7-
"github.com/deis/deisctl/backend/fleet"
8-
"github.com/deis/deisctl/cmd"
6+
"github.com/deis/deis/deisctl/backend"
7+
"github.com/deis/deis/deisctl/backend/fleet"
8+
"github.com/deis/deis/deisctl/cmd"
99
)
1010

1111
type DeisCtlClient interface {

deisctl/cmd/cmd.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ import (
1111
"strconv"
1212
"strings"
1313

14-
"github.com/deis/deisctl/backend"
15-
"github.com/deis/deisctl/config"
16-
"github.com/deis/deisctl/constant"
17-
"github.com/deis/deisctl/update"
18-
"github.com/deis/deisctl/utils"
14+
"github.com/deis/deis/deisctl/backend"
15+
"github.com/deis/deis/deisctl/config"
16+
"github.com/deis/deis/deisctl/constant"
17+
"github.com/deis/deis/deisctl/update"
18+
"github.com/deis/deis/deisctl/utils"
1919
"github.com/docopt/docopt-go"
2020
)
2121

@@ -296,7 +296,7 @@ Options:
296296
return err
297297
}
298298
// download and save the unit files to the specified path
299-
rootURL := "https://raw.githubusercontent.com/deis/deisctl/"
299+
rootURL := "https://raw.githubusercontent.com/deis/deis/deisctl/"
300300
tag := args["--tag"].(string)
301301
units := []string{
302302
"deis-builder.service",

deisctl/config/etcd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
fleetEtcd "github.com/coreos/fleet/etcd"
1111
"github.com/coreos/fleet/ssh"
1212
"github.com/coreos/go-etcd/etcd"
13-
"github.com/deis/deisctl/backend/fleet"
13+
"github.com/deis/deis/deisctl/backend/fleet"
1414
)
1515

1616
func getTunnelFlag() string {

0 commit comments

Comments
 (0)