aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Baker <mbm@openwrt.org>2005-04-03 06:35:36 +0000
committerMike Baker <mbm@openwrt.org>2005-04-03 06:35:36 +0000
commitdd00af154a8295a7fcb593258df617d9f6a7e461 (patch)
tree0cacb1b3081c2ba154bb415f0c8bfe0e6ccda9c7
parent7a8d5e9690140f78b93884d31002de4686c026fa (diff)
downloadupstream-dd00af154a8295a7fcb593258df617d9f6a7e461.tar.gz
upstream-dd00af154a8295a7fcb593258df617d9f6a7e461.tar.bz2
upstream-dd00af154a8295a7fcb593258df617d9f6a7e461.zip
cleanup & fix logic not to depend on dropbearkey if keys exist
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@537 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-xpackage/dropbear/files/S50dropbear38
1 files changed, 12 insertions, 26 deletions
diff --git a/package/dropbear/files/S50dropbear b/package/dropbear/files/S50dropbear
index fb0bca4969..41c99a5451 100755
--- a/package/dropbear/files/S50dropbear
+++ b/package/dropbear/files/S50dropbear
@@ -1,31 +1,17 @@
#!/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
+for type in rsa dss; do {
+ # check for keys
+ key=/tmp/dropbear/dropbear_${type}_host_key
+ [ ! -f $key ] && {
+ # generate missing keys
+ mkdir -p /tmp/dropbear
+ [ -x /usr/bin/dropbearkey ] && {
+ /usr/bin/dropbearkey -t $type -f $key 2>&- >&- && exec $0 $*
+ } &
+ exit 0
+ }
+}; done
umask 077
-
/usr/sbin/dropbear
-