aboutsummaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorJean-Philippe Roemer <roemer.jp@gmail.com>2015-10-12 22:13:22 +0100
committerJean-Philippe Roemer <roemer.jp@gmail.com>2015-10-12 22:13:22 +0100
commit9acf02ad7fb7550d8024651582476dc1bcdc17f9 (patch)
tree6d3fefe34ae811d940559516a99887d41c2478f2 /docker
parent5c6df9f31b2cdb13185c948ee103b8182d6fcfb7 (diff)
downloadgitea-9acf02ad7fb7550d8024651582476dc1bcdc17f9.tar.gz
gitea-9acf02ad7fb7550d8024651582476dc1bcdc17f9.zip
Fix bug introduced in #1759 preventing ssh server to launch
- ssh/setup: test directive now check if a file exist in key path instead of a folder - ssh/setup script was hanging waiting for an input about rewriting the key as the test case was returning true, when it should have been false (check if file is a folder instead of a file)
Diffstat (limited to 'docker')
-rwxr-xr-xdocker/s6/openssh/setup10
1 files changed, 5 insertions, 5 deletions
diff --git a/docker/s6/openssh/setup b/docker/s6/openssh/setup
index 7e74440d62..f263516bca 100755
--- a/docker/s6/openssh/setup
+++ b/docker/s6/openssh/setup
@@ -1,23 +1,23 @@
#!/bin/sh
# Check if host keys are present, else create them
-if ! test -d /data/ssh/ssh_host_key; then
+if ! test -f /data/ssh/ssh_host_key; then
ssh-keygen -q -f /data/ssh/ssh_host_key -N '' -t rsa1
fi
-if ! test -d /data/ssh/ssh_host_rsa_key; then
+if ! test -f /data/ssh/ssh_host_rsa_key; then
ssh-keygen -q -f /data/ssh/ssh_host_rsa_key -N '' -t rsa
fi
-if ! test -d /data/ssh/ssh_host_dsa_key; then
+if ! test -f /data/ssh/ssh_host_dsa_key; then
ssh-keygen -q -f /data/ssh/ssh_host_dsa_key -N '' -t dsa
fi
-if ! test -d /data/ssh/ssh_host_ecdsa_key; then
+if ! test -f /data/ssh/ssh_host_ecdsa_key; then
ssh-keygen -q -f /data/ssh/ssh_host_ecdsa_key -N '' -t ecdsa
fi
-if ! test -d /data/ssh/ssh_host_ed25519_key; then
+if ! test -f /data/ssh/ssh_host_ed25519_key; then
ssh-keygen -q -f /data/ssh/ssh_host_ed25519_key -N '' -t ed25519
fi