mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-04-05 02:10:29 -07:00
11 lines
627 B
YAML
11 lines
627 B
YAML
---
|
|
# From https://docs.redhat.com/en/documentation/red_hat_build_of_keycloak/24.0/html/server_developer_guide/themes#creating_a_theme:
|
|
# If you want to manually delete the content of the themes cache,
|
|
# you can do so by deleting the data/tmp/kc-gzip-cache directory of the server distribution
|
|
# It can be useful for instance if you redeployed custom providers or custom themes without
|
|
# disabling themes caching in the previous server executions.
|
|
- name: "Delete {{ keycloak.service_name }} theme cache directory"
|
|
ansible.builtin.file:
|
|
path: "{{ keycloak.home }}/data/tmp/kc-gzip-cache"
|
|
state: absent
|
|
become: true
|