1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Timezone handling (#70)

* supply TZ info in php template

* should be already set in default_vars

* elgg - softcode timezone

* use supplied variable in php template

* guard against TZ not being present in env
This commit is contained in:
Jerry Vonau 2017-07-04 15:00:50 -05:00 committed by georgejhunt
parent c00a5d828b
commit e5543b3f99
6 changed files with 6 additions and 10 deletions

View file

@ -53,6 +53,10 @@
value: '{{ ansible_product_uuid }}'
# Put all computed vars here so derive properly from any prior var file
- name: If the TZ is not set in env, set it to UTC
set_fact: local_tz='UTC'
when: local_tz == ""
- name: Set port 80 for Admin Console
set_fact:
gui_port: 80