Add ssh-rsa to ssh config as this seems to be disabled by default

This commit is contained in:
2021-11-11 11:33:27 +01:00
parent 0601ad4d0f
commit 7a518e0482

View File

@@ -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