From 7a518e0482856d240563e5622301b3b286663d9c Mon Sep 17 00:00:00 2001 From: Tobias Maier Date: Thu, 11 Nov 2021 11:33:27 +0100 Subject: [PATCH] Add ssh-rsa to ssh config as this seems to be disabled by default --- playbook.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/playbook.yml b/playbook.yml index efeeae9..206e7d8 100644 --- a/playbook.yml +++ b/playbook.yml @@ -68,7 +68,7 @@ - name: Install packages from AUR community.general.pacman: - name: oh-my-zsh-git,zsh-theme-powerlevel10k-git,zsh-autosuggestions,zsh-syntax-highlighting + name: oh-my-zsh-git,zsh-theme-powerlevel10k-git,zsh-autosuggestions,zsh-syntax-highlighting,openssh state: present executable: paru become: yes @@ -95,3 +95,11 @@ group: tobi mode: '0644' + - name: Add ssh-rsa to ssh config as this seems to be disabled by default + blockinfile: + path: /etc/ssh/ssh_config + block: | + Host * + HostKeyAlgorithms ssh-rsa + PubkeyAcceptedKeyTypes ssh-rsa +