dropbear: prefer rsa key, dss keys are obsoleted in recent openssl
This commit is contained in:
parent
a09c172d6e
commit
385e26f04d
@ -6,15 +6,18 @@ if test "$DROPBEAR" != "yes"; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if ! test -r /etc/dropbear/dropbear_dss_host_key; then
|
||||
if ! test -r /etc/dropbear/dropbear_rsa_host_key; then
|
||||
mkdir -p /etc/dropbear
|
||||
if test -r /etc/sysconfig/dropbear_dss_host_key; then
|
||||
cp /etc/sysconfig/dropbear_dss_host_key /etc/dropbear/dropbear_dss_host_key
|
||||
if test -r /etc/sysconfig/dropbear_rsa_host_key; then
|
||||
cp /etc/sysconfig/dropbear_rsa_host_key /etc/dropbear/dropbear_rsa_host_key
|
||||
else
|
||||
dropbearkey -t dss -f /etc/dropbear/dropbear_dss_host_key
|
||||
cp /etc/dropbear/dropbear_dss_host_key /etc/sysconfig/dropbear_dss_host_key
|
||||
dropbearkey -t rsa -f /etc/dropbear/dropbear_rsa_host_key
|
||||
cp /etc/dropbear/dropbear_rsa_host_key /etc/sysconfig/dropbear_rsa_host_key
|
||||
fi
|
||||
fi
|
||||
if test -r /etc/sysconfig/dropbear_dss_host_key; then
|
||||
cp /etc/sysconfig/dropbear_dss_host_key /etc/dropbear/dropbear_dss_host_key
|
||||
fi
|
||||
export HOME=/root
|
||||
if test -r /etc/sysconfig/authorized_keys ; then
|
||||
mkdir -p $HOME/.ssh
|
||||
|
Loading…
Reference in New Issue
Block a user