Sha256: 9dfb7bf56af39932c436b7c1c7257b3ef07b3efa98025df77045661334d321d4
Contents?: true
Size: 629 Bytes
Versions: 3
Compression:
Stored size: 629 Bytes
Contents
Vagrant.configure('2') do |config| # Choose base box config.vm.box = 'bento/ubuntu-16.04' config.vm.provider 'virtualbox' do |vb| # Prevent clock skew when host goes to sleep while VM is running vb.customize ['guestproperty', 'set', :id, '/VirtualBox/GuestAdd/VBoxService/--timesync-set-threshold', 10_000] vb.cpus = 2 vb.memory = 2048 end # Defaults config.vm.provision :salt do |salt| salt.masterless = true salt.minion_config = '.dev/vagrant/minion' # Pillars salt.pillar({ 'ruby' => { 'version' => '2.3.3', } }) salt.run_highstate = true end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
dynamoid-2.1.0 | Vagrantfile |
dynamoid-2.0.0 | Vagrantfile |
dynamoid-1.3.4 | Vagrantfile |