Sha256: 6dcf8178a2a7c808b651b03c922a87f7a3bced1914d7dc42cf25d43744e75f66
Contents?: true
Size: 610 Bytes
Versions: 49
Compression:
Stored size: 610 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.define "debian" do |debian| debian.vm.box = "chef/debian-7.4" end config.vm.define "ubuntu" do |ubuntu| ubuntu.vm.box = "ubuntu/trusty64" end config.vm.provision :shell, inline: "sudo apt-get install -y python python-apt aptitude" config.vm.provision "ansible" do |ansible| ansible.playbook = "role.yml" ansible.verbose = "vv" ansible.sudo = true end end
Version data entries
49 entries across 49 versions & 1 rubygems