Sha256: fdb332413ccf4561e800f8133c4e7785f9e9051d2e06b66a3b267a7be60b0e6e

Contents?: true

Size: 1.06 KB

Versions: 11

Compression:

Stored size: 1.06 KB

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 = "openldap.github.org"

  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.provision "shell", inline: 'echo "HIIIIIII"', run: "always"

  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

11 entries across 11 versions & 1 rubygems

Version Path
github-ldap-1.10.1 test/support/vm/openldap/Vagrantfile
github-ldap-1.10.0 test/support/vm/openldap/Vagrantfile
github-ldap-1.9.0 test/support/vm/openldap/Vagrantfile
github-ldap-1.8.2 test/support/vm/openldap/Vagrantfile
github-ldap-1.8.1 test/support/vm/openldap/Vagrantfile
github-ldap-1.8.0 test/support/vm/openldap/Vagrantfile
github-ldap-1.7.1 test/support/vm/openldap/Vagrantfile
github-ldap-1.7.0 test/support/vm/openldap/Vagrantfile
github-ldap-1.6.0 test/support/vm/openldap/Vagrantfile
github-ldap-1.5.0 test/support/vm/openldap/Vagrantfile
github-ldap-1.4.0 test/support/vm/openldap/Vagrantfile