+ 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
+ local rootloginallowed
+ local norootlogin
+ config_get_bool rootloginallowed "${section}" RootLogin 1
+ [ "${rootloginallowed}" -eq 0 ] && norootlogin=1