Skip to content
Snippets Groups Projects
Commit fd1484d9 authored by Felix Schäfer's avatar Felix Schäfer :construction_worker:
Browse files

Add ability to install custom keycloak themes

parent 317668a9
No related branches found
No related tags found
No related merge requests found
...@@ -6,3 +6,4 @@ keycloak_url: http://downloads.jboss.org/keycloak/{{ keycloak_version }}/{{keycl ...@@ -6,3 +6,4 @@ keycloak_url: http://downloads.jboss.org/keycloak/{{ keycloak_version }}/{{keycl
keycloak_jboss_home: "{{ keycloak_dir }}/keycloak-{{ keycloak_version }}" keycloak_jboss_home: "{{ keycloak_dir }}/keycloak-{{ keycloak_version }}"
keycloak_log_dir: "{{ keycloak_jboss_home }}/standalone/log" keycloak_log_dir: "{{ keycloak_jboss_home }}/standalone/log"
keycloak_proxy_address_forwarding: "false" keycloak_proxy_address_forwarding: "false"
keycloak_custom_themes: []
...@@ -148,3 +148,10 @@ ...@@ -148,3 +148,10 @@
creates: "{{ keycloak_jboss_home }}/standalone/configuration/keycloak-add-user.json" creates: "{{ keycloak_jboss_home }}/standalone/configuration/keycloak-add-user.json"
notify: restart keycloak notify: restart keycloak
when: not keycloak_directory.stat.exists when: not keycloak_directory.stat.exists
- name: Install custom keycloak themes
git:
dest: "{{ keycloak_jboss_home }}/themes/{{ item.name }}"
repo: "{{ item.repository }}"
with_items: "{{ keycloak_custom_themes }}"
notify: restart keycloak
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment