openssh: update to 7.8p1

This commit is contained in:
Tom G. Christensen 2018-09-04 18:41:43 +02:00
parent 281474380f
commit 3d2df6730d
3 changed files with 7 additions and 9 deletions

View File

@ -6,7 +6,7 @@
###########################################################
# Check the following 4 variables before running the script
topdir=openssh
version=7.7p1
version=7.8p1
pkgver=1
source[0]=ftp://ftp.heanet.ie/pub/OpenBSD/OpenSSH/portable/$topdir-$version.tar.gz
# If there are no patches, simply comment this

View File

@ -1,5 +1,9 @@
CHANGELOG
---------
* Fri Aug 24 2018 Tom G. Christensen <swpkg@jupiterrise.com> - 7.8p1-1
- Update to 7.8p1
- Drop creation of DSA keys in the init script
* Wed Apr 04 2018 Tom G. Christensen <swpkg@jupiterrise.com> - 7.7p1-1
- Update to 7.7p1

View File

@ -6,7 +6,6 @@
SSHD=/usr/tgcware/sbin/sshd
KEYGEN=/usr/tgcware/bin/ssh-keygen
RSA_KEY=/usr/tgcware/etc/ssh/ssh_host_rsa_key
DSA_KEY=/usr/tgcware/etc/ssh/ssh_host_dsa_key
ECDSA_KEY=/usr/tgcware/etc/ssh/ssh_host_ecdsa_key
ED25519_KEY=/usr/tgcware/etc/ssh/ssh_host_ed25519_key
ECHO=/usr/bin/echo
@ -29,11 +28,6 @@ do_hostkeygen()
$KEYGEN -q -t rsa -f $RSA_KEY -N '' > /dev/null 2>&1
$ECHO "."
fi
if [ ! -s $DSA_KEY ]; then
$ECHO "Generating $DSA_KEY:\c"
$KEYGEN -q -t dsa -f $DSA_KEY -N '' > /dev/null 2>&1
$ECHO "."
fi
if [ ! -s $ECDSA_KEY ]; then
$ECHO "Generating $ECDSA_KEY:\c"
$KEYGEN -q -t ecdsa -f $ECDSA_KEY -N '' > /dev/null 2>&1