gitea: fix deprecation warnings (#498)
Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: #498
This commit is contained in:
parent
1e60a4dacc
commit
864fac0b0f
1 changed files with 9 additions and 4 deletions
|
@ -32,7 +32,8 @@
|
||||||
notify: "Restart gitea"
|
notify: "Restart gitea"
|
||||||
when: (not gitea_version_check|bool) or (not ansible_check_mode and (gitea_active_version.stdout != gitea_version))
|
when: (not gitea_version_check|bool) or (not ansible_check_mode and (gitea_active_version.stdout != gitea_version))
|
||||||
|
|
||||||
- include: create_user.yml
|
- include_tasks:
|
||||||
|
file: create_user.yml
|
||||||
|
|
||||||
- name: "Create config and data directory"
|
- name: "Create config and data directory"
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
|
@ -62,10 +63,13 @@
|
||||||
- "{{ gitea_home }}/log"
|
- "{{ gitea_home }}/log"
|
||||||
- "{{ gitea_repository_root }}"
|
- "{{ gitea_repository_root }}"
|
||||||
|
|
||||||
- include: install_systemd.yml
|
- include_tasks:
|
||||||
|
file: install_systemd.yml
|
||||||
when: ansible_service_mgr == "systemd"
|
when: ansible_service_mgr == "systemd"
|
||||||
|
|
||||||
- include_tasks: jwt_secrets.yml
|
- include_tasks:
|
||||||
|
file: jwt_secrets.yml
|
||||||
|
|
||||||
- name: 'Install git'
|
- name: 'Install git'
|
||||||
ansible.builtin.package:
|
ansible.builtin.package:
|
||||||
name: 'git'
|
name: 'git'
|
||||||
|
@ -87,5 +91,6 @@
|
||||||
enabled: true
|
enabled: true
|
||||||
when: ansible_service_mgr == "systemd"
|
when: ansible_service_mgr == "systemd"
|
||||||
|
|
||||||
- include: fail2ban.yml
|
- include_tasks:
|
||||||
|
file: fail2ban.yml
|
||||||
when: gitea_fail2ban_enabled|bool
|
when: gitea_fail2ban_enabled|bool
|
||||||
|
|
Loading…
Reference in a new issue