Sha256: 3d69480eb172bfcb305c81273c824d1ea60911037bd75739ccb54759c5bc9de5

Contents?: true

Size: 331 Bytes

Versions: 33

Compression:

Stored size: 331 Bytes

Contents

Vagrant.configure('2') do |config|
  {
    linux_i686: 'chef/centos-6.5-i386',
    linux_x86_64: 'chef/centos-6.5',
  }.each do |name, url|
    config.vm.define name do |machine|
      machine.vm.hostname = name.to_s.gsub('_', '-')
      machine.vm.box = url
    end
  end

  config.vm.provision :shell, path: 'script/vm_init'
end

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
image_optim_pack-0.2.1.20150327 Vagrantfile
image_optim_pack-0.2.1.20150310 Vagrantfile
image_optim_pack-0.2.1.20150305 Vagrantfile
image_optim_pack-0.2.1.20150203 Vagrantfile
image_optim_pack-0.2.1.20150201 Vagrantfile
image_optim_pack-0.2.1.20150129 Vagrantfile
image_optim_pack-0.2.1.20150107 Vagrantfile
image_optim_pack-0.2.1 Vagrantfile
image_optim_pack-0.2.0.20141210 Vagrantfile
image_optim_pack-0.2.0.20141122 Vagrantfile
image_optim_pack-0.2.0 Vagrantfile
image_optim_pack-0.1.0.20141104 Vagrantfile
image_optim_pack-0.1.0 Vagrantfile