We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98aab3a commit cc17d3bCopy full SHA for cc17d3b
builtin/signer/local/Signer.go
@@ -75,6 +75,12 @@ func (s *Signer) Init(config *viper.Viper) error {
75
s.CriticalOptions = config.GetStringMapString("criticalOptions")
76
s.Extensions = config.GetStringMapString("extensions")
77
78
+ // Little hack to handle permit-X11-forwarding case issue with viper https://github.com/signmykeyio/signmykey/issues/230
79
+ if _, ok := s.Extensions["permit-x11-forwarding"]; ok {
80
+ s.Extensions["permit-X11-forwarding"] = ""
81
+ delete(s.Extensions, "permit-x11-forwarding")
82
+ }
83
+
84
return nil
85
}
86
0 commit comments