Well, first push

This commit is contained in:
git
2023-04-19 17:02:43 +02:00
parent 825b252c9b
commit ee38cf8458
72 changed files with 1195 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
---
- name: Dowload
ansible.builtin.uri:
url: https://github.com/MatousVondrejka.keys
method: GET
return_content: true
register: ssh_key
- name: Setting
ansible.builtin.blockinfile:
state: present
insertafter: EOF
path: ~/.ssh/authorized_keys
mode: '0664'
create: true
block: |
{{ ssh_key.content }}