network/openssh-krb5: Updated for version 6.7p1.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Leigh Wedding 2014-10-24 07:36:30 +07:00 committed by Willy Sudiarto Raharjo
parent 601999d020
commit 933e764c90
3 changed files with 12 additions and 6 deletions

View file

@ -30,7 +30,7 @@
PRGNAM=openssh-krb5
SRCNAM=openssh
VERSION=${VERSION:-6.6p1}
VERSION=${VERSION:-6.7p1}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -76,7 +76,7 @@ find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
-o -perm 511 \) -exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
CFLAGS="$SLKCFLAGS" \
./configure \
@ -89,7 +89,7 @@ CFLAGS="$SLKCFLAGS" \
--with-default-path=/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/kerberos/bin \
--with-privsep-path=/var/empty \
--with-privsep-user=sshd \
--with-kerberos5=/usr/kerberos
--with-kerberos5=/usr/kerberos \
--build=$ARCH-slackware-linux
make

View file

@ -1,8 +1,8 @@
PRGNAM="openssh-krb5"
VERSION="6.6p1"
VERSION="6.7p1"
HOMEPAGE="http://www.openssh.com/"
DOWNLOAD="http://slackware.osuosl.org/slackware-14.1/patches/source/openssh/openssh-6.6p1.tar.gz"
MD5SUM="3e9800e6bca1fbac0eea4d41baa7f239"
DOWNLOAD="http://slackware.osuosl.org/slackware-14.1/patches/source/openssh/openssh-6.7p1.tar.gz"
MD5SUM="3246aa79317b1d23cae783a3bf8275d6"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="krb5"

View file

@ -12,6 +12,12 @@ sshd_start() {
if [ ! -f /etc/ssh/ssh_host_rsa_key ]; then
/usr/bin/ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N ''
fi
if [ ! -f /etc/ssh/ssh_host_ecdsa_key ]; then
/usr/bin/ssh-keygen -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key -N ''
fi
if [ ! -f /etc/ssh/ssh_host_ed25519_key ]; then
/usr/bin/ssh-keygen -t ed25519 -f /etc/ssh/ssh_host_ed25519_key -N ''
fi
/usr/kerberos/sbin/sshd
}