mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-20 03:04:43 +02:00
[package] dropbear: add GatewayPorts (-a) option (#6503)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19127 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
57f44330bc
commit
5cc23dc78f
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
|
|
||||||
PKG_NAME:=dropbear
|
PKG_NAME:=dropbear
|
||||||
PKG_VERSION:=0.52
|
PKG_VERSION:=0.52
|
||||||
PKG_RELEASE:=3
|
PKG_RELEASE:=4
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:= \
|
PKG_SOURCE_URL:= \
|
||||||
|
@ -38,10 +38,13 @@ dropbear_start()
|
|||||||
local bannerfile
|
local bannerfile
|
||||||
config_get bannerfile ${section} BannerFile
|
config_get bannerfile ${section} BannerFile
|
||||||
[ -f $bannerfile ] || bannerfile=''
|
[ -f $bannerfile ] || bannerfile=''
|
||||||
|
# D) gatewayports
|
||||||
|
local gatewayports
|
||||||
|
config_get_bool gatewayports "${section}" GatewayPorts 0
|
||||||
|
[ "${gatewayports}" -eq 1 ] || gatewayports=''
|
||||||
# concatenate parameters
|
# concatenate parameters
|
||||||
local args
|
local args
|
||||||
args="${nopasswd:+-s }${port:+-p ${port} }${bannerfile:+-b $bannerfile }-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
|
# execute program and return its exit code
|
||||||
[ "${verbosed}" -ne 0 ] && echo "${initscript}: section ${section} starting ${PROG} ${args}"
|
[ "${verbosed}" -ne 0 ] && echo "${initscript}: section ${section} starting ${PROG} ${args}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user