patch from Paul Geraedts
SVN-Revision: 28018
PKG_NAME:=autossh
PKG_VERSION:=1.4b
-PKG_RELEASE:=2
+PKG_RELEASE:=3
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
PKG_SOURCE_URL:=http://www.harding.motd.ca/autossh/
config autossh
option ssh '-i /etc/dropbear/id_rsa -N -T -R 2222:localhost:22 user@host'
+ option gatetime '0'
option monitorport '20000'
option poll '600'
start_service () {
local section="$1"
config_get ssh "$section" ssh
+ config_get gatetime "$section" gatetime
config_get monitorport "$section" monitorport
config_get poll "$section" poll
- AUTOSSH_POLL=${poll:-"600"} autossh -M ${monitorport:-"20000"} -f ${ssh}
+ AUTOSSH_GATETIME=${gatetime:-"30"} AUTOSSH_POLL=${poll:-"600"} autossh -M ${monitorport:-"20000"} -f ${ssh}
}
boot() {