Skip to content

Instantly share code, notes, and snippets.

@collinmutembei
Last active October 31, 2016 17:13
Show Gist options
  • Select an option

  • Save collinmutembei/2f1f2fe44cd4d6424ea8283a823643ae to your computer and use it in GitHub Desktop.

Select an option

Save collinmutembei/2f1f2fe44cd4d6424ea8283a823643ae to your computer and use it in GitHub Desktop.
How to force vagrant machine to synchronize time with sytstem clock
# https://goo.gl/NO38hO
# add in Vagrantfile
config.vm.provision :shell, :inline => "sudo rm /etc/localtime && sudo ln -s /usr/share/zoneinfo/Africa/Nairobi /etc/localtime", run: "always"
# replace `Africa/Nairobi` with the timezone you would like to set
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment