Upgrade to 1.22.5 #10

Merged
chris merged 9 commits from development into main 2024-12-15 20:33:14 -05:00
Showing only changes of commit e085a65725 - Show all commits

View File

@ -73,9 +73,15 @@
- /etc/gitea - /etc/gitea
- name: Debug ansible_virtualization_type
ansible.builtin.debug:
var: ansible_virtualization_type
verbosity: 1
- name: Manage Gitea service - name: Manage Gitea service
when: when:
- ansible_virtualization_type | select('match', '(?:podman|docker|container)') - not ansible_virtualization_type | regex_search('(podman|docker|container)')
block: block:
- name: Deploy unit file for Gitea - name: Deploy unit file for Gitea
ansible.builtin.template: ansible.builtin.template:
@ -102,7 +108,7 @@
name : gitea name : gitea
state : restarted state : restarted
when: when:
- ansible_virtualization_type | select('match', '(?:podman|docker|container)') - not ansible_virtualization_type | regex_search('(podman|docker|container)')
... ...