mirror of
https://github.com/jbowdre/library-syncer.git
synced 2024-11-22 09:52:19 +00:00
26 lines
789 B
Bash
26 lines
789 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
# set ssh config permissions
|
||
|
|
||
|
echo "$SYNC_CMD $(cat /home/syncer/.ssh/id_syncer.pub)" > /home/syncer/.ssh/authorized_keys
|
||
|
chown syncer:syncer /home/syncer/.ssh/authorized_keys && chmod 600 /home/syncer/.ssh/authorized_keys
|
||
|
if [ $(getent shadow syncer | awk 'BEGIN { FS = ":" } ; { print $2 }') == '!' ]; then
|
||
|
passwd -u syncer
|
||
|
fi
|
||
|
|
||
|
if [ ! -f "/etc/ssh/ssh_host_rsa_key" ]; then
|
||
|
ssh-keygen -f /etc/ssh/ssh_host_rsa_key -N '' -t rsa
|
||
|
fi
|
||
|
if [ ! -f "/etc/ssh/ssh_host_dsa_key" ]; then
|
||
|
ssh-keygen -f /etc/ssh/ssh_host_dsa_key -N '' -t dsa
|
||
|
fi
|
||
|
if [ ! -d "/var/run/sshd" ]; then
|
||
|
mkdir -p /var/run/sshd
|
||
|
fi
|
||
|
|
||
|
sed -i "s/^#PasswordAuthentication yes/PasswordAuthentication no/g" /etc/ssh/sshd_config
|
||
|
|
||
|
echo -e "\n[$(date +"%Y/%m/%d-%H:%M:%S")] Starting sshd..."
|
||
|
exec "$@"
|