Sha256: 27d017524dc1686ac96ad9b2acd81e62832beed62debd1335aa006f40deebf77
Contents?: true
Size: 444 Bytes
Versions: 7
Compression:
Stored size: 444 Bytes
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure('2') do |config| config.vm.define 'anxs' do |c| c.vm.box = 'ubuntu/trusty64' c.vm.network :private_network, ip: '192.168.88.22' c.vm.hostname = 'anxs.local' c.vm.provision 'ansible' do |ansible| ansible.playbook = 'test.yml' ansible.sudo = true ansible.inventory_path = 'vagrant-inventory' ansible.host_key_checking = false end end end
Version data entries
7 entries across 7 versions & 1 rubygems