mirror of
https://github.com/roles-ansible/ansible_role_gitea.git
synced 2024-08-16 11:39:50 +02:00
L3D
3f4f8f52ac
+ Added the variable ``gitea_actions_extra`` + Increased the Number for the simplified versions check
66 lines
2.2 KiB
YAML
66 lines
2.2 KiB
YAML
---
|
|
gitea_go_arch_map:
|
|
i386: '386'
|
|
x86_64: 'amd64'
|
|
aarch64: 'arm64'
|
|
armv7l: 'arm-6'
|
|
armv6l: 'arm-6'
|
|
armv5l: 'arm-5'
|
|
|
|
gitea_arch: "{{ gitea_go_arch_map[ansible_architecture] | default(ansible_architecture) }}"
|
|
gitea_supported_forks: 'gitea and forgejo'
|
|
|
|
gitea_fork_variables:
|
|
files:
|
|
- "fork_{{ gitea_fork | lower }}.yml"
|
|
paths:
|
|
- 'vars'
|
|
|
|
gitea_variables:
|
|
files:
|
|
- "{{ ansible_distribution | lower }}-{{ ansible_distribution_version | lower }}.yml"
|
|
- "{{ ansible_distribution | lower }}-{{ ansible_distribution_major_version | lower }}.yml"
|
|
- "{{ ansible_os_family | lower }}-{{ ansible_distribution_major_version | lower }}.yml"
|
|
- "{{ ansible_distribution | lower }}.yml"
|
|
- "{{ ansible_os_family | lower }}.yml"
|
|
paths:
|
|
- 'vars'
|
|
|
|
transfer_custom_logo_logosvg:
|
|
files:
|
|
- "{{ gitea_custom_search }}/gitea_logo/logo.svg"
|
|
- "files/{{ inventory_hostname }}/gitea_logo/logo.svg"
|
|
- "files/{{ gitea_http_domain }}/gitea_logo/logo.svg"
|
|
- 'files/gitea_logo/logo.svg'
|
|
|
|
transfer_custom_logo_logopng:
|
|
files:
|
|
- "{{ gitea_custom_search }}/gitea_logo/logo.png"
|
|
- "files/{{ inventory_hostname }}/gitea_logo/logo.png"
|
|
- "files/{{ gitea_http_domain }}/gitea_logo/logo.png"
|
|
- 'files/gitea_logo/logo.png'
|
|
|
|
transfer_custom_logo_faviconpng:
|
|
files:
|
|
- "{{ gitea_custom_search }}/gitea_logo/favicon.png"
|
|
- "files/{{ inventory_hostname }}/gitea_logo/favicon.png"
|
|
- "files/{{ gitea_http_domain }}/gitea_logo/favicon.png"
|
|
- 'files/gitea_logo/favicon.png'
|
|
|
|
transfer_custom_logo_appletouchiconpng:
|
|
files:
|
|
- "{{ gitea_custom_search }}/gitea_logo/apple-touch-icon.png"
|
|
- "files/{{ inventory_hostname }}/gitea_logo/apple-touch-icon.png"
|
|
- "files/{{ gitea_http_domain }}/gitea_logo/apple-touch-icon.png"
|
|
- 'files/gitea_logo/apple-touch-icon.png'
|
|
|
|
transfer_custom_footer:
|
|
files:
|
|
- "{{ gitea_custom_search }}/gitea_footer/extra_links_footer.tmpl"
|
|
- "files/{{ inventory_hostname }}/gitea_footer/extra_links_footer.tmpl"
|
|
- "files/{{ gitea_http_domain }}/gitea_footer/extra_links_footer.tmpl"
|
|
- 'files/gitea_footer/extra_links_footer.tmpl'
|
|
- 'files/extra_links_footer.tmpl'
|
|
|
|
playbook_version_number: 45 # should be int
|
|
playbook_version_path: 'do1jlr.gitea.version'
|