diff options
author | Nick Thomas <nick@gitlab.com> | 2021-04-30 14:15:30 +0100 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2021-04-30 14:32:06 +0100 |
commit | 4545fc56e23b476ca2b54cc23ec72a0aa0d7dae1 (patch) | |
tree | 8175967320e2fa8e022e5629d6f39b2ddcfe16bb /cmd/gitlab-sshd/main.go | |
parent | 584643e0e10e0cbeee4f8366b5e50656dfee9ea4 (diff) | |
download | gitlab-shell-4545fc56e23b476ca2b54cc23ec72a0aa0d7dae1.tar.gz |
gitlab-sshd: Respect the ssl_cert_dir config516-handle-ssl-cert-dir-correctly
Changelog: fixed
Diffstat (limited to 'cmd/gitlab-sshd/main.go')
-rw-r--r-- | cmd/gitlab-sshd/main.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/gitlab-sshd/main.go b/cmd/gitlab-sshd/main.go index 04d6888..f777b9f 100644 --- a/cmd/gitlab-sshd/main.go +++ b/cmd/gitlab-sshd/main.go @@ -54,6 +54,9 @@ func main() { } log.Fatalf("configuration error: %v", err) } + + cfg.ApplyGlobalState() + logger.ConfigureStandalone(cfg) // Startup monitoring endpoint. |