summaryrefslogtreecommitdiffstats
path: root/docker/s6/openssh
diff options
context:
space:
mode:
Diffstat (limited to 'docker/s6/openssh')
-rwxr-xr-xdocker/s6/openssh/run7
-rwxr-xr-xdocker/s6/openssh/setup23
2 files changed, 0 insertions, 30 deletions
diff --git a/docker/s6/openssh/run b/docker/s6/openssh/run
deleted file mode 100755
index 99172aab69..0000000000
--- a/docker/s6/openssh/run
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/sh
-
-if test -f ./setup; then
- source ./setup
-fi
-
-exec gosu root /usr/sbin/sshd -D -f /app/gogs/docker/sshd_config
diff --git a/docker/s6/openssh/setup b/docker/s6/openssh/setup
deleted file mode 100755
index 5333d3c06e..0000000000
--- a/docker/s6/openssh/setup
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-# Check if host keys are present, else create them
-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 -f /data/ssh/ssh_host_dsa_key; then
- ssh-keygen -q -f /data/ssh/ssh_host_dsa_key -N '' -t dsa
-fi
-
-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 -f /data/ssh/ssh_host_ed25519_key; then
- ssh-keygen -q -f /data/ssh/ssh_host_ed25519_key -N '' -t ed25519
-fi
-
-# Set correct right to ssh keys
-chown -R root:root /data/ssh/*
-chmod 0700 /data/ssh
-chmod 0600 /data/ssh/*