Fixing date sync issue

This commit is contained in:
Axel 2018-04-04 10:54:15 +02:00 committed by GitHub
parent f878765f63
commit aeee847012
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

3
Vagrantfile vendored
View file

@ -76,6 +76,9 @@ Vagrant.configure("2") do |config|
# # Customize the amount of memory on the VM: # # Customize the amount of memory on the VM:
vb.memory = "1024" vb.memory = "1024"
vb.name = "w_vagrant_lamp" vb.name = "w_vagrant_lamp"
# Fixing issue of VM loosing sync of the date and time while sleeping.
vb.customize ['guestproperty', 'set', :id, '/VirtualBox/GuestAdd/VBoxService/--timesync-set-threshold', 10000]
end end
# #
# View the documentation for the provider you are using for more # View the documentation for the provider you are using for more