From 0037a6d5ceeb0840f5ac1a7b4ca960d16fc7f55d Mon Sep 17 00:00:00 2001 From: Andrew Vaughan Date: Sun, 22 Oct 2023 08:12:51 -0400 Subject: [PATCH] Remove RSA restriction from SSH (#116) --- linux/ubuntu/scripts/act.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux/ubuntu/scripts/act.sh b/linux/ubuntu/scripts/act.sh index 4127dd8..0ff5a6e 100755 --- a/linux/ubuntu/scripts/act.sh +++ b/linux/ubuntu/scripts/act.sh @@ -93,8 +93,8 @@ printf "\n\tšŸ‹ Updated apt lists and upgraded packages šŸ‹\t\n" printf "\n\tšŸ‹ Creating ~/.ssh and adding 'github.com' šŸ‹\t\n" mkdir -m 0700 -p ~/.ssh { - ssh-keyscan -t rsa github.com - ssh-keyscan -t rsa ssh.dev.azure.com + ssh-keyscan github.com + ssh-keyscan ssh.dev.azure.com } >>/etc/ssh/ssh_known_hosts printf "\n\tšŸ‹ Installed base utils šŸ‹\t\n"