servers/roles/forgejo/handlers/main.yml
Timotej Lazar af9e30eb3e Add forgejo role
On alpine, with OIDC auth and a podman runner.
2024-06-05 12:05:22 +02:00

24 lines
467 B
YAML

- name: reload nginx
service:
name: nginx
state: reloaded
when: '"handler" not in ansible_skip_tags'
- name: restart forgejo
service:
name: forgejo
state: restarted
notify: wait for forgejo
when: '"handler" not in ansible_skip_tags'
- name: restart forgejo-runner
service:
name: forgejo-runner
state: restarted
when: '"handler" not in ansible_skip_tags'
- name: wait for forgejo
wait_for:
host: localhost
port: 3000