this patch allow to set -g option 1. -g allow to make a more secure ssh server config...
authorTravis Kemen <thepeople@openwrt.org>
Sun, 14 Mar 2010 21:26:45 +0000 (21:26 +0000)
committerTravis Kemen <thepeople@openwrt.org>
Sun, 14 Mar 2010 21:26:45 +0000 (21:26 +0000)
Matthieu
from #6736

SVN-Revision: 20219

package/dropbear/files/dropbear.init

index 85a90d02fded9b8f768f7a153994ee662096d820..6250636fc11f7c02770f50805027962ea17be43d 100755 (executable)
@@ -37,15 +37,20 @@ dropbear_start()
        config_get port "${section}" Port
        # C) banner file
        local bannerfile
-       config_get bannerfile ${section} BannerFile
-       [ -f $bannerfile ] || bannerfile=''
+       config_get bannerfile "${section}" BannerFile
+       [ -f "$bannerfile" ] || bannerfile=''
        # D) gatewayports
        local gatewayports
        config_get_bool gatewayports "${section}" GatewayPorts 0
        [ "${gatewayports}" -eq 1 ] || gatewayports=''
+       # E) root password authentication
+       local norootpasswd
+       local rootpassauth
+       config_get_bool rootpassauth "${section}" RootPasswordAuth 1
+       [ "${rootpassauth}" -eq 0 ] && norootpasswd=1
        # concatenate parameters
        local args
-       args="${nopasswd:+-s }${port:+-p ${port} }${bannerfile:+-b $bannerfile }${gatewayports:+-a }-P /var/run/${NAME}.${PIDCOUNT}.pid"
+       args="${nopasswd:+-s }${norootpasswd:+-g }${port:+-p ${port} }${bannerfile:+-b $bannerfile }${gatewayports:+-a }-P /var/run/${NAME}.${PIDCOUNT}.pid"
 
        # execute program and return its exit code
        [ "${verbosed}" -ne 0 ] && echo "${initscript}: section ${section} starting ${PROG} ${args}"