1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-21 20:28:02 +03:00
openwrt-xburst/package/dropbear/files/S50dropbear
wbx 47f814e7a2 no start-stop-daemon
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@423 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-03-23 10:44:22 +00:00

32 lines
753 B
Bash
Executable File

#!/bin/sh
# Make sure the dropbearkey progam exists
[ -f /usr/bin/dropbearkey ] || exit 0
# Check for the Dropbear RSA key
if [ ! -f /etc/dropbear/dropbear_rsa_host_key ] ; then
(
echo Generating RSA Key...
mkdir -p /etc/dropbear
/usr/bin/dropbearkey -t rsa -f /etc/dropbear/dropbear_rsa_host_key
[ -f /etc/dropbear/dropbear_rsa_host_key ] && exec $0 $*
) > /dev/null 2> /dev/null &
exit 0
fi
# Check for the Dropbear DSS key
if [ ! -f /etc/dropbear/dropbear_dss_host_key ] ; then
(
echo Generating DSS Key...
mkdir -p /etc/dropbear
/usr/bin/dropbearkey -t dss -f /etc/dropbear/dropbear_dss_host_key
[ -f /etc/dropbear/dropbear_dss_host_key ] && exec $0 $*
) > /dev/null 2> /dev/null &
exit 0
fi
umask 077
/usr/sbin/dropbear