Merge branch 'master' into linuxmint

This commit is contained in:
Pim Kunis 2023-02-20 22:06:56 +01:00
commit 114d98cd7c
8 changed files with 45 additions and 6 deletions

View file

@ -47,3 +47,13 @@
apt:
update_cache: true
when: apt_repository.changed
- name: Create ssh config directory
file:
path: ~/.ssh
state: directory
mode: 0700
- name: Copy ssh config
copy:
src: "{{ role_path }}/files/ssh_config"
dest: ~/.ssh/config
mode: 0600