diff options
| author | Christine Dodrill <me@christine.website> | 2019-05-30 12:17:43 -0400 |
|---|---|---|
| committer | Christine Dodrill <me@christine.website> | 2019-06-02 11:03:55 -0400 |
| commit | 3338d3e7fcf985a68f44f29b1c25215b0d42cdb7 (patch) | |
| tree | 0d8e9c06e76722b72d3cd92061f0ecc900023ed2 /internal | |
| parent | f7be77bcc6d4700dc3a66d3531c4c3ab87b9830e (diff) | |
| download | x-3338d3e7fcf985a68f44f29b1c25215b0d42cdb7.tar.xz x-3338d3e7fcf985a68f44f29b1c25215b0d42cdb7.zip | |
subsume vanity, update within.website
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/kahless/kahless.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/internal/kahless/kahless.go b/internal/kahless/kahless.go index f0ee543..84bdd68 100644 --- a/internal/kahless/kahless.go +++ b/internal/kahless/kahless.go @@ -4,6 +4,7 @@ import ( "bytes" "io" "io/ioutil" + "log" "net" "os" "path/filepath" @@ -19,7 +20,7 @@ func getAgent() (agent.Agent, error) { } const ( - greedoAddr = `kahless.wg.akua:22` + greedoAddr = `kahless.cetacean.club:22` greedoUser = `cadey` ) @@ -51,10 +52,12 @@ func Copy(mode os.FileMode, fileName string, contents io.Reader, destinationPath return err } + log.Println("dialing kahless...") client, err := Dial() if err != nil { return err } + log.Println("done") session, err := client.NewSession() if err != nil { |
