Fix typos in Deployer

This commit is contained in:
Christer Warén
2025-09-14 13:29:56 +03:00
parent b2b813060e
commit 4855e6ef75

View File

@@ -853,7 +853,7 @@
label: "{{ item.path }}" label: "{{ item.path }}"
when: when:
- item.state == 'file' - item.state == 'file'
- not item.endswith('.ttf') - not item.path.endswith('.ttf')
tags: tags:
- keycloak - keycloak
- sso - sso
@@ -868,7 +868,7 @@
label: "{{ item.path }}" label: "{{ item.path }}"
when: when:
- item.state == 'file' - item.state == 'file'
- item.endswith('.ttf') - item.path.endswith('.ttf')
tags: tags:
- keycloak - keycloak
- sso - sso
@@ -881,7 +881,7 @@
- name: "Deployer - Keacloak - Run Container" - name: "Deployer - Keacloak - Run Container"
containers.podman.podman_container: containers.podman.podman_container:
name: keacloak name: keycloak
image: quay.io/keycloak/keycloak:latest image: quay.io/keycloak/keycloak:latest
state: started state: started
recreate: on recreate: on