change exception to docker; this will work but not for podman
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Chris Hammer 2023-11-25 00:50:42 -05:00
parent b22026b7f7
commit b0e3fd8d44

View File

@ -79,7 +79,7 @@
- name: Manage Gitea service - name: Manage Gitea service
when: ansible_virtualization_type != "container" when: ansible_virtualization_type != "docker"
block: block:
- name: Deploy unit file for Gitea - name: Deploy unit file for Gitea
ansible.builtin.template: ansible.builtin.template:
@ -105,7 +105,7 @@
ansible.builtin.service: ansible.builtin.service:
name : gitea name : gitea
state : restarted state : restarted
when: ansible_virtualization_type != "container" when: ansible_virtualization_type != "docker"
... ...