Prebuilt: add dropbear-keygen

CM issue 2030
This commit is contained in:
Patrick Jacques 2010-08-28 05:25:45 -07:00
parent aeb2aaccc7
commit dc808ff1e1
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
#!/system/bin/sh
#
# Generate keys for the Dropbear SSH server
# Steve Kondik (cyanogen)
#
DROPBEAR_HOME=/data/dropbear
DROPBEARKEY=/system/xbin/dropbearkey
if [ ! -d $DROPBEAR_HOME ] || [ ! -f $DROPBEAR_HOME/dropbear_rsa_host_key ] || [ ! -f $DROPBEAR_HOME/dropbear_dsa_host_key ];
then
if [ ! -d $DROPBEAR_HOME ];
then
mkdir /data/dropbear;
chmod 750 /data/dropbear
fi
for k in dss rsa;
do
if [ ! -e $DROPBEAR_HOME/dropbear_${k}_host_key ];
then
$DROPBEARKEY -t $k -f $DROPBEAR_HOME/dropbear_${k}_host_key;
chmod 640 $DROPBEAR_HOME/dropbear_${k}_host_key;
fi
done
fi