refactor: consolidate all roles into ansible/roles/ and update ansible.cfg

- Move all roles from playbooks/roles/ to roles/
- Update roles_path in ansible.cfg
- Add cast user to common role
- Create standalone podman role
- Add semaphore role with Podman + Quadlet support
This commit is contained in:
Hermes Agent service account
2026-05-26 22:22:08 -05:00
parent 9250b0f193
commit 92b2a9d609
98 changed files with 158 additions and 78 deletions

View File

@@ -0,0 +1,21 @@
- name: Create cast group
ansible.builtin.group:
name: cast
state: present
system: true
- name: Create cast user
ansible.builtin.user:
name: cast
group: cast
shell: /bin/bash
create_home: true
state: present
- name: Ensure cast user has passwordless sudo
ansible.builtin.lineinfile:
path: /etc/sudoers.d/cast
line: "cast ALL=(ALL) NOPASSWD:ALL"
create: yes
mode: '0440'
validate: 'visudo -cf %s'