Restructured role manage-ssh-keys

This commit is contained in:
Ansible Servercow
2024-11-21 16:05:54 +01:00
parent b854e41745
commit 07b21314ef
5 changed files with 49 additions and 32 deletions

View File

@@ -0,0 +1,8 @@
---
- name: Stelle sicher, dass das .ssh-Verzeichnis existiert
file:
path: "{{ authorized_keys_file | dirname }}"
state: directory
owner: "{{ ssh_user }}"
group: "{{ ssh_user }}"
mode: '0700'