Fix ssh pacakge - enable root password login, ssh-dss public key

This commit is contained in:
MilhouseVH 2015-08-18 10:04:45 +01:00
parent 9b9e84eda4
commit 6390ccb28a

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() {