summaryrefslogtreecommitdiffstats
path: root/vagrant_support/timezone.yml
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2017-04-14 19:05:03 +0200
committerDylan William Hardison <dylan@hardison.net>2017-04-14 19:10:20 +0200
commit4a130afba58836ebb2f70a31c88588ea46017009 (patch)
tree200816c2c7525e76228559e6b0ee81dc46980c14 /vagrant_support/timezone.yml
parent480bbf368b485a6a0317b9356ce90b75201b3efa (diff)
downloadbugzilla-4a130afba58836ebb2f70a31c88588ea46017009.tar.gz
bugzilla-4a130afba58836ebb2f70a31c88588ea46017009.tar.xz
Bug 1328874 - Add Vagrantfile for production-like development VMs
Diffstat (limited to 'vagrant_support/timezone.yml')
-rw-r--r--vagrant_support/timezone.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/vagrant_support/timezone.yml b/vagrant_support/timezone.yml
new file mode 100644
index 000000000..f0e1b5f26
--- /dev/null
+++ b/vagrant_support/timezone.yml
@@ -0,0 +1,18 @@
+---
+
+- name: check for non-link localtime
+ stat: path=/etc/localtime
+ register: localtime
+
+- name: remove localtime
+ file:
+ path: /etc/localtime
+ state: absent
+ when: localtime.stat.islnk is defined and localtime.stat.islnk == False
+
+- name: set timezone to same as production
+ file:
+ path: /etc/localtime
+ src: /usr/share/zoneinfo/America/Los_Angeles
+ force: true
+ state: link