adjust switch default configs for the swconfig api change
[openwrt.git] / package / dropbear / files / dropbear.init
index c91d0a7..36c3700 100755 (executable)
@@ -34,10 +34,17 @@ dropbear_start()
        # B) listen port
        local port
        config_get port "${section}" Port
-
+       # C) banner file
+       local bannerfile
+       config_get bannerfile ${section} BannerFile
+       [ -f $bannerfile ] || bannerfile=''
+       # D) gatewayports
+       local gatewayports
+       config_get_bool gatewayports "${section}" GatewayPorts 0
+       [ "${gatewayports}" -eq 1 ] || gatewayports=''
        # concatenate parameters
        local args
-       args="${nopasswd:+-s }${port:+-p ${port}-P /var/run/${NAME}.${PIDCOUNT}.pid"
+       args="${nopasswd:+-s }${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}"
This page took 0.021579 seconds and 4 git commands to generate.