Sha256: 04bc4f2144189116a153006b7699027c229c7acabab205d7822c2778a9adfb24

Contents?: true

Size: 512 Bytes

Versions: 6

Compression:

Stored size: 512 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.box = "hashicorp/precise64"

  config.vm.network "private_network", ip: "192.168.44.20"

  config.vm.provision "chef_solo" do |chef|
    chef.cookbooks_path = [File.expand_path('../cookbooks', __FILE__)]
    chef.add_recipe "apt-mirror"
    chef.add_recipe "db"
    chef.json = {}
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
infrataster-plugin-mysql-0.2.1 spec/Vagrantfile
infrataster-plugin-mysql-0.2.0 spec/Vagrantfile
infrataster-plugin-mysql-0.1.3 spec/Vagrantfile
infrataster-plugin-mysql-0.1.2 spec/Vagrantfile
infrataster-plugin-mysql-0.1.1 spec/Vagrantfile
infrataster-plugin-mysql-0.1.0 spec/Vagrantfile