From: John Crispin Date: Fri, 29 Aug 2014 18:16:41 +0000 (+0000) Subject: dropbear: add mdns support to the init.d script X-Git-Tag: reboot~6089 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=7f260ef6b7b9b7031b6a24ba5195a78472e04be0 dropbear: add mdns support to the init.d script Signed-off-by: John Crispin SVN-Revision: 42326 --- diff --git a/package/network/services/dropbear/files/dropbear.init b/package/network/services/dropbear/files/dropbear.init index c6f3d9ba82..5186523910 100755 --- a/package/network/services/dropbear/files/dropbear.init +++ b/package/network/services/dropbear/files/dropbear.init @@ -46,14 +46,16 @@ validate_section_dropbear() 'BannerFile:file' \ 'Port:list(port):22' \ 'SSHKeepAlive:uinteger:300' \ - 'IdleTimeout:uinteger:0' + 'IdleTimeout:uinteger:0' \ + 'mdns:uinteger:1' } dropbear_instance() { local PasswordAuth enable Interface GatewayPorts \ RootPasswordAuth RootLogin rsakeyfile \ - dsskeyfile BannerFile Port SSHKeepAlive IdleTimeout + dsskeyfile BannerFile Port SSHKeepAlive IdleTimeout \ + mdns validate_section_dropbear "${1}" || { echo "validation failed" @@ -77,6 +79,7 @@ dropbear_instance() append_ports "${Interface}" "${Port}" [ "${IdleTimeout}" -ne 0 ] && procd_append_param command -I "${IdleTimeout}" [ "${SSHKeepAlive}" -ne 0 ] && procd_append_param command -K "${SSHKeepAlive}" + [ "${mdns}" -ne 0 ] && procd_add_mdns "ssh" "tcp" "$Port" "daemon=dropbear" procd_close_instance }