mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-07-30 00:21:36 -07:00
7 lines
362 B
YAML
7 lines
362 B
YAML
---
|
|
# cf. https://www.keycloak.org/server/configuration#_optimize_the_keycloak_startup
|
|
- name: "Rebuild {{ keycloak.service_name }} config"
|
|
ansible.builtin.shell: | # noqa blocked_modules shell is necessary here
|
|
env -i bash -c "set -a ; source {{ keycloak_quarkus_sysconf_file }} ; {{ keycloak.home }}/bin/kc.sh build "
|
|
become: true
|
|
changed_when: true
|