library/roles/gitea/tasks/main.yml: ensure that the gitea service is enabled.

This commit is contained in:
Andrea Dell'Amico 2019-04-01 15:08:01 +02:00
parent 43977a6994
commit a96a7d1009
1 changed files with 4 additions and 1 deletions

View File

@ -40,4 +40,7 @@
command: systemctl daemon-reload
when: gitea_systemd_unit is changed
tags: [ 'git', 'gitea' ]
- name: Ensure that the gitea service is running and enabled
service: name=gitea status=started enabled=yes
tags: [ 'git', 'gitea' ]