Update autossh to 1.4f.

For Mayuresh.

Update: Version 1.4f incorporates a number of changes and fixes to signal
handling and exit conditions. The most notable changes are that it will exit
properly when killed while waiting between ssh restarts, and it will now
restart rather than exiting when the child ssh process is killed.
This commit is contained in:
Benny Siegert 2018-11-15 17:28:39 +01:00
parent f1e6a4572c
commit 932e0f8717
3 changed files with 5 additions and 44 deletions

View File

@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.4 2013/03/30 07:06:51 shattered Exp $
DISTNAME= autossh-1.4e
DISTNAME= autossh-1.4f
CATEGORIES= security
MASTER_SITES= http://www.harding.motd.ca/autossh/
EXTRACT_SUFX= .tgz

View File

@ -1,7 +1,6 @@
$NetBSD: distinfo,v 1.3 2013/03/30 07:06:51 shattered Exp $
SHA1 (autossh-1.4e.tgz) = 268b5f2556ecfbb18b750b26d9816e53fb9501f4
RMD160 (autossh-1.4e.tgz) = b4b1689404cc96da50c6b0c5d0163c4399b5c2b5
SHA512 (autossh-1.4e.tgz) = 2f71403ee005103c6a3e2e669f6b26153161c95c8dacd3e73d61673461b3512348636877760d911341771e744c0a682b107df4ac48621661ff36a9fc0191f2fb
Size (autossh-1.4e.tgz) = 65852 bytes
SHA1 (patch-aa) = 7021aaae589aa018834116cd13013570f55cee9e
SHA1 (autossh-1.4f.tgz) = 28189c42ab2e05448596a44adc9d62071172fe9b
RMD160 (autossh-1.4f.tgz) = 9bef5319813f5fee3e7e96bdf1f3c3b7a0df4b5c
SHA512 (autossh-1.4f.tgz) = a66912a04d1b659802913ec63d7b951fa6265dedf4480f0ad2dfdfb852e1e3029355b9a132bf3fa5b4b67e5ac8dace83b96e837182d8b3f0c2c72ad9188b7b8f
Size (autossh-1.4f.tgz) = 67128 bytes

View File

@ -1,38 +0,0 @@
$NetBSD: patch-aa,v 1.1 2013/03/30 07:06:52 shattered Exp $
--- Makefile.in.orig 2011-10-12 20:30:40.000000000 +0000
+++ Makefile.in
@@ -45,18 +45,18 @@ distclean: allclean
- /bin/rm -f Makefile
install: $(TARGET)
- mkdir -p -m 755 $(bindir)
- mkdir -p -m 755 $(prefix)/share/doc/autossh
- mkdir -p -m 755 $(datadir)/examples/autossh
- mkdir -p -m 755 $(mandir)/man1
- cp $(TARGET) $(bindir)
- cp CHANGES README $(datadir)/doc/autossh
- cp autossh.host $(datadir)/examples/autossh
- cp rscreen $(datadir)/examples/autossh
- cp autossh.1 $(mandir)/man1
- chmod 755 $(bindir)/$(TARGET)
- chmod 644 $(datadir)/doc/autossh/CHANGES
- chmod 644 $(datadir)/doc/autossh/README
- chmod 644 $(datadir)/examples/autossh/autossh.host
- chmod 644 $(datadir)/examples/autossh/rscreen
- chmod 644 $(mandir)/man1/autossh.1
+ mkdir -p -m 755 $(DESTDIR)$(bindir)
+ mkdir -p -m 755 $(DESTDIR)$(prefix)/share/doc/autossh
+ mkdir -p -m 755 $(DESTDIR)$(datadir)/examples/autossh
+ mkdir -p -m 755 $(DESTDIR)$(mandir)/man1
+ cp $(TARGET) $(DESTDIR)$(bindir)
+ cp CHANGES README $(DESTDIR)$(datadir)/doc/autossh
+ cp autossh.host $(DESTDIR)$(datadir)/examples/autossh
+ cp rscreen $(DESTDIR)$(datadir)/examples/autossh
+ cp autossh.1 $(DESTDIR)$(mandir)/man1
+ chmod 755 $(DESTDIR)$(bindir)/$(TARGET)
+ chmod 644 $(DESTDIR)$(datadir)/doc/autossh/CHANGES
+ chmod 644 $(DESTDIR)$(datadir)/doc/autossh/README
+ chmod 644 $(DESTDIR)$(datadir)/examples/autossh/autossh.host
+ chmod 644 $(DESTDIR)$(datadir)/examples/autossh/rscreen
+ chmod 644 $(DESTDIR)$(mandir)/man1/autossh.1