-
Notifications
You must be signed in to change notification settings - Fork 41
/
docker-entrypoint.sh
executable file
·94 lines (78 loc) · 3.18 KB
/
docker-entrypoint.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/bin/sh
################################################################################
# INIT
################################################################################
mkdir -p /root/.ssh
> /root/.ssh/authorized_keys
chmod go-rwx /root/.ssh/authorized_keys
sed -i "s/.*PasswordAuthentication .*/PasswordAuthentication no/g" /etc/ssh/sshd_config
sed -i 's/root:!/root:*/' /etc/shadow
# Provide SSH_AUTH_KEY_* via environment variable
for item in `env`; do
case "$item" in
SSH_AUTH_KEY*)
ENVVAR=`echo $item | cut -d \= -f 1`
printenv $ENVVAR >> /root/.ssh/authorized_keys
;;
esac
done
# Provide CRON_TASK_* via environment variable
> /etc/crontabs/root
for item in `env`; do
case "$item" in
CRON_TASK*)
ENVVAR=`echo $item | cut -d \= -f 1`
printenv $ENVVAR >> /etc/crontabs/root
echo "root" > /etc/crontabs/cron.update
;;
esac
done
if [ -e /ssh_host_keys/ssh_host_rsa_key.pub ] && [ -e /ssh_host_keys/ssh_host_rsa_key ]; then
# Copy persistent host keys
echo "Using existing SSH host keys"
cp /ssh_host_keys/* /etc/ssh/
elif [ ! -e /etc/ssh/ssh_host_rsa_key.pub ]; then
# Generate host SSH keys
echo "Generating SSH host keys"
ssh-keygen -A
if [ -d /ssh_host_keys ]; then
# Store generated keys on persistent volume
echo "Persisting SSH host keys in /ssh_host_keys"
cp -up /etc/ssh/ssh_host_* /ssh_host_keys/
fi
fi
# Generate root SSH key
if [ ! -e /root/.ssh/id_rsa.pub ]; then
ssh-keygen -q -N "" -f /root/.ssh/id_rsa
fi
################################################################################
# START as SERVER
################################################################################
if [ "$1" == "server" ]; then
AUTH=`cat /root/.ssh/authorized_keys`
if [ -z "$AUTH" ]; then
echo "=================================================================================="
echo "ERROR: No SSH_AUTH_KEY provided, you'll not be able to connect to this container. "
echo "=================================================================================="
exit 1
fi
SSH_PARAMS="-D -e -p ${SSH_PORT:-22} $SSH_PARAMS"
echo "================================================================================"
echo "Running: /usr/sbin/sshd $SSH_PARAMS "
echo "================================================================================"
exec /usr/sbin/sshd -D $SSH_PARAMS
fi
echo "Please add this ssh key to your server /home/user/.ssh/authorized_keys "
echo "================================================================================"
echo "`cat /root/.ssh/id_rsa.pub`"
echo "================================================================================"
################################################################################
# START as CLIENT via crontab
################################################################################
if [ "$1" == "client" ]; then
exec /usr/sbin/crond -f
fi
################################################################################
# Anything else
################################################################################
exec "$@"