Ansible Galaxy Role: Configuration for installing Gitea on Ubuntu instances.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
343 B

3 years ago
---
- name: Reload daemon
systemd:
daemon_reload: true
become: yes
- name: Restart gitea
systemd:
name: gitea
state: restarted
become: yes
- name: Restart postgres
systemd:
name: postgresql
state: restarted
become: yes
- name: Restart fail2ban
systemd:
name: fail2ban
state: restarted
become: yes