2023-03-29 13:35:19 +02:00

11 lines
216 B
YAML

- name: Check gitea process
command: pgrep -f gitea
ignore_errors: yes
register: gitea_pids
- name: Restart Gitea
ansible.builtin.service:
name: "gitea"
state: "restarted"
when: gitea_pids.rc == 0