summaryrefslogtreecommitdiff
path: root/internal/command/commandargs
diff options
context:
space:
mode:
authorMarin Hannache <git@mareo.fr>2023-01-23 07:54:09 +0000
committerIgor Drozdov <idrozdov@gitlab.com>2023-01-23 07:54:09 +0000
commit51ea0f50f52d5d1dade02aadff3c163a0a792779 (patch)
treed36cc06a14545bf627a988dbd2aec60c85cc5f9b /internal/command/commandargs
parent977a7e80f03db2d2e2646abfc6ad9d95bfc71fb9 (diff)
downloadgitlab-shell-51ea0f50f52d5d1dade02aadff3c163a0a792779.tar.gz
Add support for the gssapi-with-mic auth method
Diffstat (limited to 'internal/command/commandargs')
-rw-r--r--internal/command/commandargs/shell.go13
1 files changed, 7 insertions, 6 deletions
diff --git a/internal/command/commandargs/shell.go b/internal/command/commandargs/shell.go
index 0b1e161..616d7e3 100644
--- a/internal/command/commandargs/shell.go
+++ b/internal/command/commandargs/shell.go
@@ -26,12 +26,13 @@ var (
)
type Shell struct {
- Arguments []string
- GitlabUsername string
- GitlabKeyId string
- SshArgs []string
- CommandType CommandType
- Env sshenv.Env
+ Arguments []string
+ GitlabUsername string
+ GitlabKeyId string
+ GitlabKrb5Principal string
+ SshArgs []string
+ CommandType CommandType
+ Env sshenv.Env
}
func (s *Shell) Parse() error {