Skip to content

Commit

Permalink
Fix repo name after fork to SolidFire Github
Browse files Browse the repository at this point in the history
We forked to the SolidFire repo, but never updated
the references and imports.  Just do a simple search
and replace (s/j-griffith/solidfire/g).
  • Loading branch information
John Griffith committed Mar 21, 2016
1 parent bd56432 commit fbd2152
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ ISCSI packages installed on each Docker node.
## Driver Installation
After the aboe Prerequisites are met, Use the standard golang install process:
```
go get -u github.com/j-griffith/solidfire-docker-driver
go get -u github.com/solidfire/solidfire-docker-driver
```

** Note a future version of the Driver will likely reside on the official
Expand Down
2 changes: 1 addition & 1 deletion daemon/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"sync"

"github.com/docker/go-plugins-helpers/volume"
"github.com/j-griffith/solidfire-docker-driver/sfapi"
"github.com/solidfire/solidfire-docker-driver/sfapi"
)

type SolidFireDriver struct {
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package main

import (
"github.com/j-griffith/solidfire-docker-driver/sfapi"
"github.com/j-griffith/solidfire-docker-driver/sfcli"
"github.com/solidfire/solidfire-docker-driver/sfapi"
"github.com/solidfire/solidfire-docker-driver/sfcli"
"os"
)

Expand Down
2 changes: 1 addition & 1 deletion sfcli/daemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package sfcli

import (
"github.com/codegangsta/cli"
"github.com/j-griffith/solidfire-docker-driver/daemon"
"github.com/solidfire/solidfire-docker-driver/daemon"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion sfcli/sfcli.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
log "github.com/Sirupsen/logrus"
"github.com/codegangsta/cli"
"github.com/j-griffith/solidfire-docker-driver/sfapi"
"github.com/solidfire/solidfire-docker-driver/sfapi"
"strings"
"unicode/utf8"
)
Expand Down
2 changes: 1 addition & 1 deletion sfcli/snapshot.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
log "github.com/Sirupsen/logrus"
"github.com/alecthomas/units"
"github.com/codegangsta/cli"
"github.com/j-griffith/solidfire-docker-driver/sfapi"
"github.com/solidfire/solidfire-docker-driver/sfapi"
"strconv"
)

Expand Down
2 changes: 1 addition & 1 deletion sfcli/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package sfcli
import (
"fmt"
"github.com/alecthomas/units"
"github.com/j-griffith/solidfire-docker-driver/sfapi"
"github.com/solidfire/solidfire-docker-driver/sfapi"
"os"
"reflect"
"strconv"
Expand Down
2 changes: 1 addition & 1 deletion sfcli/vag.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
//"github.com/alecthomas/units"
"fmt"
"github.com/codegangsta/cli"
"github.com/j-griffith/solidfire-docker-driver/sfapi"
"github.com/solidfire/solidfire-docker-driver/sfapi"
"strconv"
)

Expand Down
2 changes: 1 addition & 1 deletion sfcli/volume.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/alecthomas/units"
"github.com/codegangsta/cli"
"github.com/j-griffith/solidfire-docker-driver/sfapi"
"github.com/solidfire/solidfire-docker-driver/sfapi"
"strconv"
"strings"
)
Expand Down

0 comments on commit fbd2152

Please sign in to comment.