From b0e3fd8d44b03880998084a232a0432d6751c12a Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Sat, 25 Nov 2023 00:50:42 -0500 Subject: [PATCH] change exception to docker; this will work but not for podman --- gitea.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gitea.yml b/gitea.yml index 25d4b64..50449d5 100644 --- a/gitea.yml +++ b/gitea.yml @@ -79,7 +79,7 @@ - name: Manage Gitea service - when: ansible_virtualization_type != "container" + when: ansible_virtualization_type != "docker" block: - name: Deploy unit file for Gitea ansible.builtin.template: @@ -105,7 +105,7 @@ ansible.builtin.service: name : gitea state : restarted - when: ansible_virtualization_type != "container" + when: ansible_virtualization_type != "docker" ...