Sha256: d0868ed2b7c4d406fa1540219f6cb10e581cb7adab6546b5ccb66c147af47142

Contents?: true

Size: 1001 Bytes

Versions: 10

Compression:

Stored size: 1001 Bytes

Contents

# -*- mode: ruby -*-
# vi: set ft=ruby :

# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.hostname = "rubyldap.com"

  config.vm.box = "hashicorp/precise64"

  config.vm.network "private_network", type: :dhcp

  config.ssh.forward_agent = true

  config.vm.provision "shell", inline: "apt-get update; exec env /vagrant_data/script/install-openldap"

  config.vm.synced_folder "../../../..", "/vagrant_data"

  config.vm.provider "vmware_fusion" do |vb, override|
    override.vm.box = "hashicorp/precise64"
    vb.memory = 4596
    vb.vmx["displayname"] = "integration tests vm"
    vb.vmx["numvcpus"] = "2"
  end

  config.vm.provider "virtualbox" do |vb, override|
    vb.memory = 4096
    vb.customize ["modifyvm", :id, "--nicpromisc2", "allow-all"]
    vb.customize ["modifyvm", :id, "--chipset", "ich9"]
    vb.customize ["modifyvm", :id, "--vram", "16"]
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
net-ldap-0.15.0 test/support/vm/openldap/Vagrantfile
net-ldap-0.14.0 test/support/vm/openldap/Vagrantfile
net-ldap-0.13.0 test/support/vm/openldap/Vagrantfile
net-ldap-0.12.1 test/support/vm/openldap/Vagrantfile
net-ldap-0.12.0 test/support/vm/openldap/Vagrantfile
rubinius-net-ldap-0.11 test/support/vm/openldap/Vagrantfile
net-ldap-0.11 test/support/vm/openldap/Vagrantfile
net-ldap-0.10.1 test/support/vm/openldap/Vagrantfile
net-ldap-0.10.0 test/support/vm/openldap/Vagrantfile
net-ldap-0.9.0 test/support/vm/openldap/Vagrantfile