Skip to content

Commit

Permalink
vagrant: sync host time
Browse files Browse the repository at this point in the history
  • Loading branch information
cgundogan committed Jan 26, 2018
1 parent a360fde commit 7480577
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ Vagrant.configure(2) do |config|

config.vm.provider "virtualbox" do |vb|
vb.name = "RIOT-VM"

vb.customize [ "guestproperty", "set", :id, "/VirtualBox/GuestAdd/VBoxService/--timesync-interval", 10000]
vb.customize [ "guestproperty", "set", :id, "/VirtualBox/GuestAdd/VBoxService/--timesync-min-adjust", 100]
vb.customize [ "guestproperty", "set", :id, "/VirtualBox/GuestAdd/VBoxService/--timesync-set-on-restore", 1]
vb.customize [ "guestproperty", "set", :id, "/VirtualBox/GuestAdd/VBoxService/--timesync-set-threshold", 10000]

# additional USB passthrough entries
# vb.customize ['usbfilter', 'add', '0', '--target', :id, '--name', '<custom_name>', '--vendorid', '<vID>', '--productid', '<pID>']
end
Expand Down

0 comments on commit 7480577

Please sign in to comment.