WIP: feat(sharkey): add ansible role for deployment

This commit is contained in:
2025-06-27 23:25:43 +02:00
parent cce1ed58d4
commit 6b1c51b7f6
14 changed files with 106 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
---
- name: Ensure sharkey user '{{ sharkey_user }}' is {{ sharkey_state }}
ansible.builtin.user:
name: "{{ sharkey_user }}"
state: "{{ sharkey_state }}"
system: "{{ sharkey_user_system }}"
create_home: "{{ sharkey_user_create_home }}"
groups: "{{ sharkey_user_groups }}"
append: "{{ sharkey_user_append_groups }}"
register: sharkey_user_info