Created
July 13, 2016 03:24
-
-
Save supaket/a82e57543a56b89bc194d6e2137c493c to your computer and use it in GitHub Desktop.
Ansible timezone for CentOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- name: Check current timezone | |
shell: awk -F\" '{ print $2}' /etc/sysconfig/clock | |
register: current_zone | |
changed_when: False | |
- name: Set UTC timezone | |
file: src=/usr/share/zoneinfo/{{ timezone }} dest=/etc/localtime state=link force=yes | |
when: current_zone.stdout != '{{ timezone }}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment