Merge pull request #4281 from MilhouseVH/fix-openssh-7.0p1

Fix openssh-7.0p1 package after 24e80bbc - fixes #4280
This commit is contained in:
Stephan Raue 2015-08-18 13:24:11 +02:00
commit ad2c0b2c5c

View File

@ -63,6 +63,9 @@ post_makeinstall_target() {
rm -rf $INSTALL/usr/bin/ssh-add
rm -rf $INSTALL/usr/bin/ssh-agent
rm -rf $INSTALL/usr/bin/ssh-keyscan
sed -i $INSTALL/etc/ssh/sshd_config -e "s|^#PermitRootLogin.*|PermitRootLogin yes|g"
echo "PubkeyAcceptedKeyTypes +ssh-dss" >> $INSTALL/etc/ssh/sshd_config
}
post_install() {