diff options
author | acinonyx <acinonyx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-09-29 07:54:53 +0000 |
---|---|---|
committer | acinonyx <acinonyx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-09-29 07:54:53 +0000 |
commit | dd6dd54f83101f332ebb4d42a0a7888a277ae464 (patch) | |
tree | 96b2a1d863dc874324e065c2ade5087df1dc96ed | |
parent | 05c0f03a6cb47adaa23582b1a5488cc4e9706888 (diff) |
[pacakge] dropbear: Add config options to allow specification of host key files, thanks Scott Merrilees and Matthias Buecher (#7824)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23148 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | package/dropbear/files/dropbear.init | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/dropbear/files/dropbear.init b/package/dropbear/files/dropbear.init index 074df70d4..aa7e07dd6 100755 --- a/package/dropbear/files/dropbear.init +++ b/package/dropbear/files/dropbear.init @@ -52,6 +52,11 @@ dropbear_start() # F) root login config_get_bool val "${section}" RootLogin 1 [ "${val}" -eq 0 ] && append args "-w" + # G) host keys + config_get val "${section}" rsakeyfile + [ -f "${val}" ] && append args "-r ${val}" + config_get val "${section}" dsskeyfile + [ -f "${val}" ] && append args "-d ${val}" # execute program and return its exit code [ "${verbosed}" -ne 0 ] && echo "${initscript}: section ${section} starting ${PROG} ${args}" |