From f06c82d4b2d68bf517438c5f942c2357396e0620 Mon Sep 17 00:00:00 2001 From: Tin Lai Date: Tue, 2 Jan 2024 13:33:22 +1100 Subject: [PATCH] implements new ssh EnableEscapeCommandline option Signed-off-by: Tin Lai --- pkg/config/host.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/config/host.go b/pkg/config/host.go index a965621e4..d7cb0e426 100644 --- a/pkg/config/host.go +++ b/pkg/config/host.go @@ -41,6 +41,7 @@ type Host struct { ControlPath string `yaml:"controlpath,omitempty,flow" json:"ControlPath,omitempty" passthrough:""` ControlPersist string `yaml:"controlpersist,omitempty,flow" json:"ControlPersist,omitempty" passthrough:""` DynamicForward composeyaml.Stringorslice `yaml:"dynamicforward,omitempty,flow" json:"DynamicForward,omitempty" passthrough:"perLine"` + EnableEscapeCommandline string `yaml:"enableescapecommandline,omitempty,flow" json:"EnableEscapeCommandline,omitempty" passthrough:""` EnableSSHKeysign string `yaml:"enablesshkeysign,omitempty,flow" json:"EnableSSHKeysign,omitempty" passthrough:""` EscapeChar string `yaml:"escapechar,omitempty,flow" json:"EscapeChar,omitempty" passthrough:""` ExitOnForwardFailure string `yaml:"exitonforwardfailure,omitempty,flow" json:"ExitOnForwardFailure,omitempty" passthrough:""`