Skip to content

Commit c669482

Browse files
committed
fix(*): remove comments and last traces of cookoo (#346)
* fix(*): remove comments and code that references cookoo Closes #330
1 parent aa7defb commit c669482

4 files changed

Lines changed: 0 additions & 125 deletions

File tree

pkg/cleaner/cleaner_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ func TestLocalDirs(t *testing.T) {
4040
"cleaner": 1,
4141
"conf": 1,
4242
"controller": 1,
43-
"env": 1,
4443
"git": 1,
4544
"gitreceive": 1,
4645
"healthsrv": 1,

pkg/env/envvar.go

Lines changed: 0 additions & 42 deletions
This file was deleted.

pkg/env/envvar_test.go

Lines changed: 0 additions & 76 deletions
This file was deleted.

pkg/sshd/server.go

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
// Package sshd implements an SSH server.
22
//
33
// See https://tools.ietf.org/html/rfc4254
4-
//
5-
// This was copied over (and effectively forked from) cookoo-ssh. Mainly this
6-
// differs from the cookoo-ssh version in that this does not act like a
7-
// stand-alone SSH server.
84
package sshd
95

106
import (
@@ -224,8 +220,6 @@ func (s *server) answer(channel ssh.Channel, requests <-chan *ssh.Request, conda
224220
for req := range requests {
225221
ok := false
226222

227-
// I think that ideally what we want to do here is pass this on to
228-
// the Cookoo router and let it handle each Type on its own.
229223
switch req.Type {
230224
case "env":
231225
o := &EnvVar{}

0 commit comments

Comments
 (0)