Files

18 lines
423 B
YAML
Raw Permalink Normal View History

---
# --- EL-specific setup (podman + systemd) ---
- name: Run EL container setup
when: ansible_os_family == 'RedHat'
ansible.builtin.include_tasks:
file: el/main.yml
tags:
- roles::llama_server::el
# --- Windows-specific setup (NSSM) ---
- name: Run Windows setup
when: ansible_os_family == 'Windows'
ansible.builtin.include_tasks:
file: windows/main.yml
tags:
- roles::llama_server::windows