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

indentation/syntax per new Ansible documentation

This commit is contained in:
A Holt 2018-02-12 20:16:46 -05:00 committed by GitHub
parent d124daa5cd
commit 9ba0675668
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,18 +5,18 @@
- name: Set local and iiab TZ to UTC if /etc/localtime is not set
set_fact:
local_tz: 'UTC'
iiab_TZ: 'UTC'
local_tz: "UTC"
iiab_TZ: "UTC"
when: TZ_set.stdout == ""
- name: Override ansible on timezone if TZ set
set_fact:
local_tz: '{{ TZ_set.stdout }}'
local_tz: "{{ TZ_set.stdout }}"
when: TZ_set.stdout != ""
- name: Using iiab TZ for local TZ
set_fact:
local_tz: '{{ iiab_TZ }}'
local_tz: "{{ iiab_TZ }}"
when: iiab_TZ is defined and iiab_TZ != "" and iiab_TZ != "TZ_set.stdout"
- name: Set default Timezone from iiab TZ (debuntu)