mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-12 11:14:57 +02:00
13 lines
130 B
Bash
13 lines
130 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
cd /root/.ssh
|
||
|
|
||
|
if [ -d keys ]
|
||
|
then
|
||
|
cat keys/*.pub > authorized_keys
|
||
|
fi
|
||
|
|
||
|
ssh-keygen -A
|
||
|
|
||
|
exec /usr/sbin/sshd -D "$@"
|