Files
grm/ansible/roles/gitea-runner/tasks/service.yml
T
Emil Simeonov e5964ca5a9 GRM-14: feat: add systemd template units and multi-instance Ansible support
- Add instance-scoped base data/config directories in defaults
- Create gitea-runner@.service.j2 template supporting Docker and binary modes
- Refactor service.yml to install systemd template unit instances
- Remove direct container lifecycle from docker_mode.yml (delegate to systemd)
- Add deregister.yml for runner deregistration on disable/remove
- Create lifecycle playbooks: start, stop, enable, disable, status, remove
- Update handlers, integration_test, docker_update, binary_update for template units
2026-06-18 22:59:04 +02:00

18 lines
457 B
YAML

---
- name: Create systemd template service file
ansible.builtin.template:
src: gitea-runner@.service.j2
dest: "/etc/systemd/system/gitea-runner@.service"
mode: "0644"
notify:
- Reload systemd
- Restart gitea-runner
- name: Enable and start gitea-runner instance
ansible.builtin.systemd:
name: "gitea-runner@{{ runner_name }}"
state: started
enabled: true
daemon_reload: true
when: systemd_available.stat.exists