Sha256: dd356e768f01815ce56b6b6aa8ccf23ca6eab397dbd3084aa36c0d789da63dcf

Contents?: true

Size: 612 Bytes

Versions: 6

Compression:

Stored size: 612 Bytes

Contents

# If this test is being run on a host that also uses auto_network in a normal
# Vagrant environment then there will already be network interfaces listening.
# Most likely in the range of 10.20.0.0/16. The following environment variable
# is set per-provider in the vagrant-spec config.
AutoNetwork.default_pool = ENV["AUTO_NETWORK_TEST_RANGE"]

Vagrant.configure('2') do |config|
  config.vm.provider 'virtualbox' do |vb|
    # Clean up network interface after tests.
    vb.destroy_unused_network_interfaces = true
  end

  config.vm.box = 'box'
  config.vm.network 'private_network', :auto_network => true
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
vagrant-auto_network-1.0.3 acceptance/skeletons/auto_network/Vagrantfile
vagrant-auto_network-1.0.2 acceptance/skeletons/auto_network/Vagrantfile
vagrant-auto_network-1.0.1 acceptance/skeletons/auto_network/Vagrantfile
vagrant-auto_network-1.0.0 acceptance/skeletons/auto_network/Vagrantfile
vagrant-auto_network-1.0.0.rc1 acceptance/skeletons/auto_network/Vagrantfile
vagrant-auto_network-1.0.0.beta2 acceptance/skeletons/auto_network/Vagrantfile