mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 13:49:42 +02:00
add autossh from Robert Berkowitz
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3547 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
c42f176ad2
commit
1bf1a98e76
@ -15,6 +15,7 @@ source "package/nvram/Config.in"
|
||||
endmenu
|
||||
|
||||
menu "Applications"
|
||||
source "package/autossh/Config.in"
|
||||
source "package/bitchx/Config.in"
|
||||
source "package/collectd/Config.in"
|
||||
source "package/cbtt/Config.in"
|
||||
|
@ -11,6 +11,7 @@ package-$(BR2_PACKAGE_ARPTABLES) += arptables
|
||||
package-$(BR2_PACKAGE_ARPWATCH) += arpwatch
|
||||
package-$(BR2_PACKAGE_ASTERISK) += asterisk
|
||||
package-$(BR2_COMPILE_ATFTP) += atftp
|
||||
package-$(BR2_PACKAGE_AUTOSSH) += autossh
|
||||
package-$(BR2_COMPILE_AVAHI) += avahi
|
||||
package-$(BR2_COMPILE_BC) += bc
|
||||
package-$(BR2_COMPILE_BIND) += bind
|
||||
|
9
openwrt/package/autossh/Config.in
Normal file
9
openwrt/package/autossh/Config.in
Normal file
@ -0,0 +1,9 @@
|
||||
config BR2_PACKAGE_AUTOSSH
|
||||
prompt "autossh........................... Auto handle ssh tunnels"
|
||||
tristate
|
||||
default m if CONFIG_DEVEL
|
||||
help
|
||||
autossh is a program to start a copy of ssh and monitor it,
|
||||
restarting it as necessary should it die or stop passing traffic.
|
||||
|
||||
http://www.harding.motd.ca/autossh/
|
39
openwrt/package/autossh/Makefile
Normal file
39
openwrt/package/autossh/Makefile
Normal file
@ -0,0 +1,39 @@
|
||||
# $Id$
|
||||
#
|
||||
# Adjust SSH below to suit.
|
||||
#
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=autossh
|
||||
PKG_VERSION:=1.3
|
||||
PKG_RELEASE:=1
|
||||
PKG_MD5SUM:=0e7ec62eeca5d1b197f3ef2d0f0d417f
|
||||
PKG_SOURCE_URL:=http://www.harding.motd.ca/autossh
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
|
||||
PKG_CAT:=zcat
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||
|
||||
VER=1.3
|
||||
SSH=/usr/bin/ssh
|
||||
|
||||
include $(TOPDIR)/package/rules.mk
|
||||
|
||||
$(eval $(call PKG_template,AUTOSSH,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||
|
||||
$(PKG_BUILD_DIR)/.configured:
|
||||
cp $(PKG_BUILD_DIR)/Makefile.linux $(PKG_BUILD_DIR)/Makefile
|
||||
touch $@
|
||||
|
||||
$(PKG_BUILD_DIR)/.built:
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
CC=$(TARGET_CC) CFLAGS="$(TARGET_CFLAGS) -Wall -D\"SSH_PATH=\\\"$(SSH)\\\"\" -D\"VER=\\\"$(PKG_VERSION)\\\"\"" \
|
||||
BINDIR=/usr/bin MANDIR=/usr/man
|
||||
touch $@
|
||||
|
||||
$(IPKG_AUTOSSH):
|
||||
mkdir -p $(IDIR_AUTOSSH)/usr/bin
|
||||
cp $(PKG_BUILD_DIR)/$(PKG_NAME) $(IDIR_AUTOSSH)/usr/bin/
|
||||
$(RSTRIP) $(IDIR_AUTOSSH)
|
||||
$(IPKG_BUILD) $(IDIR_AUTOSSH) $(PACKAGE_DIR)
|
5
openwrt/package/autossh/ipkg/autossh.control
Normal file
5
openwrt/package/autossh/ipkg/autossh.control
Normal file
@ -0,0 +1,5 @@
|
||||
Package: autossh
|
||||
Priority: optional
|
||||
Section: net
|
||||
Depends: openssh-client
|
||||
Description: Autossh client
|
Loading…
Reference in New Issue
Block a user