feat(sharkey): add ansible role for deployment

This commit is contained in:
2025-06-27 23:25:43 +02:00
parent cce1ed58d4
commit 5006ae6123
16 changed files with 328 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
---
- name: Ensure sharkey docker environment is templated
ansible.builtin.copy:
content: "{{ sharkey_container_env_file_contents }}"
dest: "{{ sharkey_container_env_file }}"
owner: "{{ sharkey_user_uid }}"
group: "{{ sharkey_user_gid }}"
mode: "0640"
when: sharkey_state == 'present'