From 088723cd4f20d6234bdef016d5a62036f46a6656 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Tue, 16 Aug 2011 20:34:24 +0000 Subject: [PATCH] [package] autossh: increase reliability of connection behavior patch from Paul Geraedts SVN-Revision: 28018 --- net/autossh/Makefile | 2 +- net/autossh/files/autossh.config | 1 + net/autossh/files/autossh.init | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/net/autossh/Makefile b/net/autossh/Makefile index c207ffe3e1..c02c12d0b3 100644 --- a/net/autossh/Makefile +++ b/net/autossh/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk 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/ diff --git a/net/autossh/files/autossh.config b/net/autossh/files/autossh.config index 2e430a0d57..6ec323858e 100644 --- a/net/autossh/files/autossh.config +++ b/net/autossh/files/autossh.config @@ -1,4 +1,5 @@ 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' diff --git a/net/autossh/files/autossh.init b/net/autossh/files/autossh.init index e873de8073..d91c7b7ca5 100644 --- a/net/autossh/files/autossh.init +++ b/net/autossh/files/autossh.init @@ -5,10 +5,11 @@ START=80 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() { -- 2.30.2