Skip to content

Commit

Permalink
Issue Sunbird-Lern#28 chore:Show time in hour in password reset email…
Browse files Browse the repository at this point in the history
…- Overridden email theme
  • Loading branch information
ahghatol committed Feb 22, 2018
1 parent e855598 commit fc04ef0
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion keycloak/scripts/ansible/roles/keycloak/tasks/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
state: directory
mode: 0755


- name: Get the postgresql driver
get_url: url={{postgresql_driver_src}} dest="sunbird_auth_{{sunbird_auth_version}}/modules/system/layers/keycloak/org/postgresql/main/" force=no

Expand Down Expand Up @@ -44,11 +45,35 @@
mode: 0755

- name: Copy Sunbird login theme
copy: src="artifacts/sunbird/" dest="sunbird_auth_{{sunbird_auth_version}}/themes/sunbird/login/" force="yes"
copy: src="artifacts/sunbird/login/" dest="sunbird_auth_{{sunbird_auth_version}}/themes/sunbird/login/" force="yes"

- name: Copy Custom Validation theme html to sunbird login theme
copy: src="../../sms-provider/templates/" dest="sunbird_auth_{{sunbird_auth_version}}/themes/sunbird/login/" force="yes"

- name: Create directory for sunbird email theme html folder
file:
path: sunbird_auth_{{sunbird_auth_version}}/themes/sunbird/email/html
state: directory
recurse: yes
mode: 0755

- name: Create directory for sunbird email theme messages folder
file:
path: sunbird_auth_{{sunbird_auth_version}}/themes/sunbird/email/messages
state: directory
recurse: yes
mode: 0755

- name: Create directory for sunbird email theme text folder
file:
path: sunbird_auth_{{sunbird_auth_version}}/themes/sunbird/email/text
state: directory
recurse: yes
mode: 0755

- name: Copy Sunbird email theme
copy: src="artifacts/sunbird/email" dest="sunbird_auth_{{sunbird_auth_version}}/themes/sunbird/" force="yes"

- name: Keycloak configuration XML file
template:
src: "roles/keycloak/templates/standalone-ha.xml"
Expand Down

0 comments on commit fc04ef0

Please sign in to comment.