aboutsummaryrefslogtreecommitdiffstats
path: root/roles/fedora/tasks/timezone.yml
blob: 90c234468854368ac80fb8d0cf9b0f4912eb41f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
---
- name: Create /etc/localtime
  file:
    path: '/etc/localtime'
    src: '../usr/share/zoneinfo/{{ timezone }}'
    state: link
    force: yes

# vim: set ts=2 sw=2 et: