Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add alternative os's into Vagrantfile
  • Loading branch information
David Farrington committed Jan 5, 2016
commit d20a4ae999018926a161f29f9f1b7560353b997b
9 changes: 7 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,13 @@ Vagrant.configure('2') do |config|
config.ssh.private_key_path = '~/.vagrant.d/insecure_private_key'

config.vm.define 'anxs' do |machine|
#machine.vm.box = 'centos/7'
machine.vm.box = 'ubuntu/trusty64'
node.vm.box = "ubuntu/trusty64"
#node.vm.box = "ubuntu/precise64"
#node.vm.box = "debian/jessie64"
#node.vm.box = "debian/wheezy64"
#node.vm.box = "chef/centos-7.1"
#node.vm.box = "chef/centos-6.6"

machine.vm.network :private_network, ip: '192.168.88.22'
machine.vm.hostname = 'anxs.local'
machine.vm.provision 'ansible' do |ansible|
Expand Down