Merge pull request #79 from rien/fix-openssh
Allow sha1 to ensure support for openssh 8.8
This commit is contained in:
commit
989a4f7810
@ -90,7 +90,11 @@ done
|
|||||||
|
|
||||||
ssh_cmd() {
|
ssh_cmd() {
|
||||||
echo "[SSH]" "$@" >&2
|
echo "[SSH]" "$@" >&2
|
||||||
ssh -o ConnectTimeout=1 -o PasswordAuthentication=no "root@$remarkable" "$@"
|
ssh -o ConnectTimeout=1 \
|
||||||
|
-o PasswordAuthentication=no \
|
||||||
|
-o PubkeyAcceptedKeyTypes=+ssh-rsa \
|
||||||
|
-o HostKeyAlgorithms=+ssh-rsa \
|
||||||
|
"root@$remarkable" "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
# kill reStream on remarkable at the end.
|
# kill reStream on remarkable at the end.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user