Add ssh-rsa to ssh config as this seems to be disabled by default
This commit is contained in:
10
playbook.yml
10
playbook.yml
@@ -68,7 +68,7 @@
|
|||||||
|
|
||||||
- name: Install packages from AUR
|
- name: Install packages from AUR
|
||||||
community.general.pacman:
|
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
|
state: present
|
||||||
executable: paru
|
executable: paru
|
||||||
become: yes
|
become: yes
|
||||||
@@ -95,3 +95,11 @@
|
|||||||
group: tobi
|
group: tobi
|
||||||
mode: '0644'
|
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
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user