rackspace -> maxlinc, to make sure travis works
diff --git a/README.asciidoc b/README.asciidoc
index 4d2e4c4..163ce88 100644
--- a/README.asciidoc
+++ b/README.asciidoc
@@ -18,11 +18,11 @@
===== Installing Into an Existing Project
Assuming you have a project underway already and its `$GOPATH` environment variable holds the correct path, you can include the Gophercloud package in the usual manner using `go get`:
- go get github.com/rackspace/gophercloud
+ go get github.com/maxlinc/gophercloud
The remainder of this document, and supporting materials, assumes a correct `$GOPATH` configuration, but further assumes that an environment variable `$GOPHERCLOUD` points to the Gophercloud installation directory as well. E.g.,
- export GOPHERCLOUD=$GOPATH/src/github.com/rackspace/gophercloud
+ export GOPHERCLOUD=$GOPATH/src/github.com/maxlinc/gophercloud
===== Creating a New Gophercloud Project
If you're just starting out with Go, a convenience script exists which lets you create a new Go workspace preconfigured with Gophercloud for you.
@@ -30,7 +30,7 @@
-----------------------------------------------------------------------------------------------------
You can execute the following command to create a brand new Go workspace that is minimally configured for use with Gophercloud. This should work for any reasonable POSIX-compatible environment.
- source <(curl "https://raw.github.com/rackspace/Gophercloud/master/scripts/create-environment.sh")
+ source <(curl "https://raw.github.com/maxlinc/Gophercloud/master/scripts/create-environment.sh")
-----------------------------------------------------------------------------------------------------
This script will not only install the software, but also create a shell script `env.sh` which, when executed, restores both `$GOPATH` and `$GOPHERCLOUD` to their correct values. The project will be installed in `$HOME/go/gophercloud`.
@@ -53,10 +53,10 @@
2. Gophercloud incorrectly implements the relevant Openstack standards.
3. Mistake in setting up the `SDK_*` environment variables above.
-If a problem occurs, https://github.com/rackspace/gophercloud/issues[we'd love to hear about it in the issue tracker!]
+If a problem occurs, https://github.com/maxlinc/gophercloud/issues[we'd love to hear about it in the issue tracker!]
==== Using Gophercloud
-Simply list Gophercloud in the import section of relevant source listings, and you will be able to issue cloud requests through Gophercloud. For examples, either refer to the detailed SDK documentation, or https://github.com/rackspace/gophercloud/tree/master/acceptance[take a look at the acceptance-level tests in the `acceptance` subdirectory.]
+Simply list Gophercloud in the import section of relevant source listings, and you will be able to issue cloud requests through Gophercloud. For examples, either refer to the detailed SDK documentation, or https://github.com/maxlinc/gophercloud/tree/master/acceptance[take a look at the acceptance-level tests in the `acceptance` subdirectory.]
==== Contributing Features or Bug-Fixes
After using Gophercloud for a while, you might find that it lacks some useful feature, or that existing behavior seems buggy. We welcome contributions from our users for both missing functionality as well as for bug fixes.
diff --git a/acceptance/01-authentication.go b/acceptance/01-authentication.go
index bcd3545..fea6e59 100644
--- a/acceptance/01-authentication.go
+++ b/acceptance/01-authentication.go
@@ -1,7 +1,7 @@
package main
import (
- "github.com/rackspace/gophercloud"
+ "github.com/maxlinc/gophercloud"
)
func main() {
diff --git a/acceptance/02-list-servers.go b/acceptance/02-list-servers.go
index 77bf82f..28aba0c 100644
--- a/acceptance/02-list-servers.go
+++ b/acceptance/02-list-servers.go
@@ -2,7 +2,7 @@
import (
"fmt"
- "github.com/rackspace/gophercloud"
+ "github.com/maxlinc/gophercloud"
"flag"
)
diff --git a/acceptance/03-get-server-details.go b/acceptance/03-get-server-details.go
index 9d534ef..c60769a 100644
--- a/acceptance/03-get-server-details.go
+++ b/acceptance/03-get-server-details.go
@@ -3,7 +3,7 @@
import (
"fmt"
"flag"
- "github.com/rackspace/gophercloud"
+ "github.com/maxlinc/gophercloud"
)
var id = flag.String("i", "", "Server ID to get info on. Defaults to first server in your account if unspecified.")
diff --git a/acceptance/04-create-server.go b/acceptance/04-create-server.go
index ff2174e..1d2249b 100644
--- a/acceptance/04-create-server.go
+++ b/acceptance/04-create-server.go
@@ -3,7 +3,7 @@
import (
"flag"
"fmt"
- "github.com/rackspace/gophercloud"
+ "github.com/maxlinc/gophercloud"
)
var region, serverName, imageRef, flavorRef *string
diff --git a/acceptance/05-list-images.go b/acceptance/05-list-images.go
index 8120591..14b93f7 100644
--- a/acceptance/05-list-images.go
+++ b/acceptance/05-list-images.go
@@ -3,7 +3,7 @@
import (
"fmt"
"flag"
- "github.com/rackspace/gophercloud"
+ "github.com/maxlinc/gophercloud"
)
var quiet = flag.Bool("quiet", false, "Quiet mode for acceptance testing. $? non-zero on error though.")
diff --git a/acceptance/06-list-flavors.go b/acceptance/06-list-flavors.go
index 5495a83..d4555f0 100644
--- a/acceptance/06-list-flavors.go
+++ b/acceptance/06-list-flavors.go
@@ -3,7 +3,7 @@
import (
"fmt"
"flag"
- "github.com/rackspace/gophercloud"
+ "github.com/maxlinc/gophercloud"
)
var quiet = flag.Bool("quiet", false, "Quiet mode for acceptance testing. $? non-zero on error though.")
diff --git a/acceptance/07-change-admin-password.go b/acceptance/07-change-admin-password.go
index 6f078ee..828552e 100644
--- a/acceptance/07-change-admin-password.go
+++ b/acceptance/07-change-admin-password.go
@@ -3,7 +3,7 @@
import (
"flag"
"fmt"
- "github.com/rackspace/gophercloud"
+ "github.com/maxlinc/gophercloud"
)
var quiet = flag.Bool("quiet", false, "Quiet mode, for acceptance testing. $? still indicates errors though.")
diff --git a/acceptance/08-reauthentication.go b/acceptance/08-reauthentication.go
index f383a30..96d764c 100644
--- a/acceptance/08-reauthentication.go
+++ b/acceptance/08-reauthentication.go
@@ -3,7 +3,7 @@
import (
"fmt"
"flag"
- "github.com/rackspace/gophercloud"
+ "github.com/maxlinc/gophercloud"
)
var quiet = flag.Bool("quiet", false, "Quiet mode for acceptance testing. $? non-zero on error though.")
diff --git a/acceptance/09-resize-server.go b/acceptance/09-resize-server.go
index b12ef4b..22ebcaa 100644
--- a/acceptance/09-resize-server.go
+++ b/acceptance/09-resize-server.go
@@ -3,7 +3,7 @@
import (
"fmt"
"flag"
- "github.com/rackspace/gophercloud"
+ "github.com/maxlinc/gophercloud"
"time"
)
diff --git a/acceptance/10-reboot-server.go b/acceptance/10-reboot-server.go
index 78ab357..53ccfcf 100644
--- a/acceptance/10-reboot-server.go
+++ b/acceptance/10-reboot-server.go
@@ -3,7 +3,7 @@
import (
"fmt"
"flag"
- "github.com/rackspace/gophercloud"
+ "github.com/maxlinc/gophercloud"
)
var quiet = flag.Bool("quiet", false, "Quiet mode, for acceptance testing. $? still indicates errors though.")
diff --git a/acceptance/11-rescue-unrescue-server.go b/acceptance/11-rescue-unrescue-server.go
index 4c4d481..ffc4a3f 100644
--- a/acceptance/11-rescue-unrescue-server.go
+++ b/acceptance/11-rescue-unrescue-server.go
@@ -3,7 +3,7 @@
import (
"fmt"
"flag"
- "github.com/rackspace/gophercloud"
+ "github.com/maxlinc/gophercloud"
)
var quiet = flag.Bool("quiet", false, "Quiet mode, for acceptance testing. $? still indicates errors though.")
diff --git a/acceptance/12-update-server.go b/acceptance/12-update-server.go
index 203b37d..cff4e64 100644
--- a/acceptance/12-update-server.go
+++ b/acceptance/12-update-server.go
@@ -3,7 +3,7 @@
import (
"fmt"
"flag"
- "github.com/rackspace/gophercloud"
+ "github.com/maxlinc/gophercloud"
)
var quiet = flag.Bool("quiet", false, "Quiet mode, for acceptance testing. $? still indicates errors though.")
diff --git a/acceptance/13-rebuild-server.go b/acceptance/13-rebuild-server.go
index 12aed26..0fcb7af 100644
--- a/acceptance/13-rebuild-server.go
+++ b/acceptance/13-rebuild-server.go
@@ -3,7 +3,7 @@
import (
"fmt"
"flag"
- "github.com/rackspace/gophercloud"
+ "github.com/maxlinc/gophercloud"
)
var quiet = flag.Bool("quiet", false, "Quiet mode, for acceptance testing. $? still indicates errors though.")
diff --git a/acceptance/14-list-addresses.go b/acceptance/14-list-addresses.go
index 128b25a..0f6bc37 100644
--- a/acceptance/14-list-addresses.go
+++ b/acceptance/14-list-addresses.go
@@ -3,7 +3,7 @@
import (
"fmt"
"flag"
- "github.com/rackspace/gophercloud"
+ "github.com/maxlinc/gophercloud"
)
var quiet = flag.Bool("quiet", false, "Quiet mode, for acceptance testing. $? still indicates errors though.")
diff --git a/acceptance/15-list-keypairs.go b/acceptance/15-list-keypairs.go
index da526e2..3b8977a 100644
--- a/acceptance/15-list-keypairs.go
+++ b/acceptance/15-list-keypairs.go
@@ -3,7 +3,7 @@
import (
"flag"
"fmt"
- "github.com/rackspace/gophercloud"
+ "github.com/maxlinc/gophercloud"
)
var quiet = flag.Bool("quiet", false, "Quiet mode for acceptance testing. $? non-zero on error though.")
diff --git a/acceptance/16-create-delete-keypair.go b/acceptance/16-create-delete-keypair.go
index e292473..5e36c6b 100644
--- a/acceptance/16-create-delete-keypair.go
+++ b/acceptance/16-create-delete-keypair.go
@@ -3,7 +3,7 @@
import (
"flag"
"fmt"
- "github.com/rackspace/gophercloud"
+ "github.com/maxlinc/gophercloud"
)
var quiet = flag.Bool("quiet", false, "Quiet mode for acceptance testing. $? non-zero on error though.")
diff --git a/acceptance/17-create-delete-image.go b/acceptance/17-create-delete-image.go
index 1fae5ab..2cbb850 100644
--- a/acceptance/17-create-delete-image.go
+++ b/acceptance/17-create-delete-image.go
@@ -3,7 +3,7 @@
import (
"flag"
"fmt"
- "github.com/rackspace/gophercloud"
+ "github.com/maxlinc/gophercloud"
)
var quiet = flag.Bool("quiet", false, "Quiet mode for acceptance testing. $? non-zero on error though.")
diff --git a/acceptance/99-delete-server.go b/acceptance/99-delete-server.go
index f3639b9..9262509 100644
--- a/acceptance/99-delete-server.go
+++ b/acceptance/99-delete-server.go
@@ -3,7 +3,7 @@
import (
"fmt"
"flag"
- "github.com/rackspace/gophercloud"
+ "github.com/maxlinc/gophercloud"
)
var quiet = flag.Bool("quiet", false, "Quiet operation for acceptance tests. $? non-zero if problem.")
diff --git a/acceptance/libargs.go b/acceptance/libargs.go
index 78fde06..c87973b 100644
--- a/acceptance/libargs.go
+++ b/acceptance/libargs.go
@@ -3,7 +3,7 @@
import (
"crypto/rand"
"fmt"
- "github.com/rackspace/gophercloud"
+ "github.com/maxlinc/gophercloud"
"os"
"time"
)
diff --git a/scripts/create-environment.sh b/scripts/create-environment.sh
index 6bae6e8..5658cb9 100644
--- a/scripts/create-environment.sh
+++ b/scripts/create-environment.sh
@@ -8,8 +8,8 @@
mkdir -p $GOPATH
# Download gophercloud into that environment
-go get github.com/rackspace/gophercloud
-cd $GOPATH/src/github.com/rackspace/gophercloud
+go get github.com/maxlinc/gophercloud
+cd $GOPATH/src/github.com/maxlinc/gophercloud
git checkout master
# Write out the env.sh convenience file.
@@ -17,7 +17,7 @@
cat <<EOF >env.sh
#!/bin/bash
export GOPATH=$(pwd)
-export GOPHERCLOUD=$GOPATH/src/github.com/rackspace/gophercloud
+export GOPHERCLOUD=$GOPATH/src/github.com/maxlinc/gophercloud
EOF
chmod a+x env.sh