mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
b54cb6cd11
This is a backport of https://github.com/juanfont/headscale/pull/1697 which trims the oidc client_secret_path.
13 lines
373 B
Diff
13 lines
373 B
Diff
diff --git a/hscontrol/config.go b/hscontrol/config.go
|
|
index 0e83a1c..71fbfb0 100644
|
|
--- a/hscontrol/config.go
|
|
+++ b/hscontrol/config.go
|
|
@@ -573,7 +573,7 @@ func GetHeadscaleConfig() (*Config, error) {
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
- oidcClientSecret = string(secretBytes)
|
|
+ oidcClientSecret = strings.TrimSpace(string(secretBytes))
|
|
}
|
|
|
|
return &Config{
|