ansible-role-keycloak-themes/tasks/main.yml

41 lines
862 B
YAML
Raw Normal View History

2021-01-08 15:43:58 +01:00
---
2021-01-08 17:02:13 +01:00
- name: Delete temporary folder
2021-01-08 17:23:41 +01:00
delegate_to: localhost
2021-01-08 17:02:13 +01:00
file:
state: absent
2021-01-08 17:23:41 +01:00
path: "{{ tmpdir }}"
2021-01-08 17:02:13 +01:00
2021-01-08 17:23:41 +01:00
- name: Git checkout themes
delegate_to: localhost
2021-01-08 15:43:58 +01:00
git:
repo: "https://code-repo.d4science.org/gCubeSystem/d4science-keycloak-themes"
2021-01-08 17:23:41 +01:00
dest: "{{ tmpdir }}"
- name: Create folder for theme
delegate_to: localhost
file:
state: directory
dest: "{{ tmpdir }}/src/themes/{{ theme }}"
2021-01-08 17:40:55 +01:00
- name: Create folders
delegate_to: localhost
2021-01-08 17:40:55 +01:00
file:
state: directory
dest: "{{ tmpdir }}/src/themes/{{ theme }}/{{ item }}"
loop:
- account
- admin
- email
- login
2021-01-08 17:40:55 +01:00
- name: Create properties for account
delegate_to: localhost
template:
2021-01-08 17:40:55 +01:00
src: "{{ item }}/theme.properties.j2"
dest: "{{ tmpdir }}/src/themes/{{ theme }}/{{ item }}/theme.properties"
loop:
- account
- admin
- email
- login