Skip to content
This repository was archived by the owner on Jun 30, 2022. It is now read-only.

Commit 51f4c45

Browse files
authored
Merge pull request #1 from dweomer/initial-move-to-k3s-io
initial move to k3s-io
2 parents 233247d + 7bf733d commit 51f4c45

File tree

7 files changed

+17
-13
lines changed

7 files changed

+17
-13
lines changed

README.md

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
# go-powershell
22

3+
_NOTE: this repository has been recently (2020-11-18) moved out of the github.com/rancher org to github.com/k3s-io
4+
supporting the [acceptance of K3s as a CNCF sandbox project](https://github.com/cncf/toc/pull/447)_.
5+
---
6+
37
This package is inspired by [jPowerShell](https://github.com/profesorfalken/jPowerShell)
48
and allows one to run and remote-control a PowerShell session. Use this if you
59
don't have a static script that you want to execute, bur rather run dynamic
610
commands.
711

812
## Installation
913

10-
go get github.com/rancher/go-powershell
14+
go get github.com/k3s-io/go-powershell
1115

1216
## Usage
1317

@@ -21,8 +25,8 @@ package main
2125
import (
2226
"fmt"
2327

24-
ps "github.com/rancher/go-powershell"
25-
"github.com/rancher/go-powershell/backend"
28+
ps "github.com/k3s-io/go-powershell"
29+
"github.com/k3s-io/go-powershell/backend"
2630
)
2731

2832
func main() {
@@ -59,9 +63,9 @@ package main
5963
import (
6064
"fmt"
6165

62-
ps "github.com/rancher/go-powershell"
63-
"github.com/rancher/go-powershell/backend"
64-
"github.com/rancher/go-powershell/middleware"
66+
ps "github.com/k3s-io/go-powershell"
67+
"github.com/k3s-io/go-powershell/backend"
68+
"github.com/k3s-io/go-powershell/middleware"
6569
)
6670

6771
func main() {

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/rancher/go-powershell
1+
module github.com/k3s-io/go-powershell
22

33
go 1.14
44

middleware/session.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"fmt"
77
"strings"
88

9-
"github.com/rancher/go-powershell/utils"
9+
"github.com/k3s-io/go-powershell/utils"
1010
"github.com/pkg/errors"
1111
)
1212

middleware/session_config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"fmt"
77
"strconv"
88

9-
"github.com/rancher/go-powershell/utils"
9+
"github.com/k3s-io/go-powershell/utils"
1010
"github.com/pkg/errors"
1111
)
1212

middleware/utf8.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"encoding/base64"
77
"fmt"
88

9-
"github.com/rancher/go-powershell/utils"
9+
"github.com/k3s-io/go-powershell/utils"
1010
)
1111

1212
// utf8 implements a primitive middleware that encodes all outputs

shell.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"regexp"
99
"sync"
1010

11-
"github.com/rancher/go-powershell/backend"
12-
"github.com/rancher/go-powershell/utils"
11+
"github.com/k3s-io/go-powershell/backend"
12+
"github.com/k3s-io/go-powershell/utils"
1313
"github.com/pkg/errors"
1414
)
1515

shell_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"testing"
77
"time"
88

9-
"github.com/rancher/go-powershell/backend"
9+
"github.com/k3s-io/go-powershell/backend"
1010
)
1111

1212
type context struct {

0 commit comments

Comments
 (0)