Skip to content

Commit

Permalink
Merge pull request #26 from yukirii/modify_repository_path
Browse files Browse the repository at this point in the history
Modify repository path
  • Loading branch information
yukirii authored Apr 16, 2019
2 parents 9577727 + b3d6d3f commit 623c8ab
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# go-tmsh

[![Build Status](https://travis-ci.org/shiftky/go-tmsh.svg?branch=master)](https://travis-ci.org/shiftky/go-tmsh) [![license](http://img.shields.io/badge/license-MIT-red.svg?style=flat)](https://raw.githubusercontent.com/shiftky/go-tmsh/master/LICENSE)
[![Build Status](https://travis-ci.org/yukirii/go-tmsh.svg?branch=master)](https://travis-ci.org/yukirii/go-tmsh) [![license](http://img.shields.io/badge/license-MIT-red.svg?style=flat)](https://raw.githubusercontent.com/yukirii/go-tmsh/master/LICENSE)

go-tmsh is a library providing functions to operate the BIG-IP Traffic Management Shell (TMSH) via SSH.

Expand All @@ -17,18 +17,18 @@ Currently the following versions of BIG-IP are tested.
## Install

```bash
$ go get github.com/shiftky/go-tmsh/...
$ go get github.com/yukirii/go-tmsh/...
```

## Usage

### Using the go-tmsh library

```go
import "github.com/shiftky/go-tmsh"
import "github.com/yukirii/go-tmsh"
```

Please refer to the [examples directory](https://github.com/shiftky/go-tmsh/tree/master/examples) for an example source code.
Please refer to the [examples directory](https://github.com/yukirii/go-tmsh/tree/master/examples) for an example source code.

### Using the tmsh command line tool

Expand All @@ -47,4 +47,4 @@ $ tmsh node -h

## Licence

[MIT](https://github.com/shiftky/go-tmsh/blob/master/LICENSE)
[MIT](https://github.com/yukirii/go-tmsh/blob/master/LICENSE)
2 changes: 1 addition & 1 deletion cmd/tmsh/cmd/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"os"

"github.com/shiftky/go-tmsh"
"github.com/spf13/cobra"
"github.com/yukirii/go-tmsh"
)

func showNodeInfo(node *tmsh.Node) {
Expand Down
2 changes: 1 addition & 1 deletion cmd/tmsh/cmd/pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"os"
"strconv"

"github.com/shiftky/go-tmsh"
"github.com/spf13/cobra"
"github.com/yukirii/go-tmsh"
)

func showPoolInfo(pool *tmsh.Pool) {
Expand Down
2 changes: 1 addition & 1 deletion cmd/tmsh/cmd/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"io/ioutil"
"os"

"github.com/shiftky/go-tmsh"
"github.com/spf13/viper"
"github.com/yukirii/go-tmsh"
)

func NewSession() *tmsh.BigIP {
Expand Down
2 changes: 1 addition & 1 deletion cmd/tmsh/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

"github.com/shiftky/go-tmsh/cmd/tmsh/cmd"
"github.com/yukirii/go-tmsh/cmd/tmsh/cmd"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion decode_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ func TestUnmarshalPool(t *testing.T) {
}

// When a pool is newly created, the TMSH does not return a status.status-reason value
// See: https://github.com/shiftky/go-tmsh/issues/17
// See: https://github.com/yukirii/go-tmsh/issues/17
func TestUnmarshalEmptyStatusReasonPool(t *testing.T) {
//# show ltm pool api.example.com_8080 members field-fmt
str := `ltm pool api.example.com_8080 {
Expand Down
2 changes: 1 addition & 1 deletion examples/example.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

"github.com/shiftky/go-tmsh"
"github.com/yukirii/go-tmsh"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/ssh-key-auth/ssh-key-auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"io/ioutil"

"github.com/shiftky/go-tmsh"
"github.com/yukirii/go-tmsh"
)

// SSH Key-Based Authentication
Expand Down

0 comments on commit 623c8ab

Please sign in to comment.