diff options
author | Mike Baker <mbm@openwrt.org> | 2005-04-03 06:35:36 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2005-04-03 06:35:36 +0000 |
commit | bd2e7a5f5e8bac61aa31518c2618176618ac94b9 (patch) | |
tree | bc06d6d9862638f5dca808b74120047e2bf0af7e /openwrt/package/dropbear/files | |
parent | 4bd5b26a90efe2a5a6675d11b8a9d9ae61deda84 (diff) | |
download | mtk-20170518-bd2e7a5f5e8bac61aa31518c2618176618ac94b9.zip mtk-20170518-bd2e7a5f5e8bac61aa31518c2618176618ac94b9.tar.gz mtk-20170518-bd2e7a5f5e8bac61aa31518c2618176618ac94b9.tar.bz2 |
cleanup & fix logic not to depend on dropbearkey if keys exist
SVN-Revision: 537
Diffstat (limited to 'openwrt/package/dropbear/files')
-rwxr-xr-x | openwrt/package/dropbear/files/S50dropbear | 38 |
1 files changed, 12 insertions, 26 deletions
diff --git a/openwrt/package/dropbear/files/S50dropbear b/openwrt/package/dropbear/files/S50dropbear index fb0bca4..41c99a5 100755 --- a/openwrt/package/dropbear/files/S50dropbear +++ b/openwrt/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 - |