aboutsummaryrefslogtreecommitdiffstats
path: root/roles/fedora/tasks/timezone.yml
diff options
context:
space:
mode:
authorEmil Renner Berthing <esmil@labitat.dk>2017-11-07 16:27:49 +0100
committerEmil Renner Berthing <esmil@labitat.dk>2017-11-12 14:56:32 +0100
commite8cdba85c48dcbbd42e6fcb5be3aa2912008cb84 (patch)
tree41ba5163cf6f110521f2ebc9035f77d2754796a0 /roles/fedora/tasks/timezone.yml
downloadlabitat-ansible-e8cdba85c48dcbbd42e6fcb5be3aa2912008cb84.tar.gz
labitat-ansible-e8cdba85c48dcbbd42e6fcb5be3aa2912008cb84.tar.xz
labitat-ansible-e8cdba85c48dcbbd42e6fcb5be3aa2912008cb84.zip
initial commit
Diffstat (limited to 'roles/fedora/tasks/timezone.yml')
-rw-r--r--roles/fedora/tasks/timezone.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/roles/fedora/tasks/timezone.yml b/roles/fedora/tasks/timezone.yml
new file mode 100644
index 0000000..05a9165
--- /dev/null
+++ b/roles/fedora/tasks/timezone.yml
@@ -0,0 +1,9 @@
+---
+- name: Create /etc/localtime
+ file:
+ path: '/etc/localtime'
+ state: link
+ src: '../usr/share/zoneinfo/{{ timezone }}'
+ force: yes
+
+# vim: set ts=2 sw=2 et: