Sha256: d69ad70208b598a0c32c9416a556c43f29423b12024e0e616a43f6bd48c01678

Contents?: true

Size: 629 Bytes

Versions: 1

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.4.1',
      }
    })

    salt.run_highstate = true
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dynamoid-2.2.0 Vagrantfile