File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ Vagrant.configure('2') do |config|
8
8
config . ssh . private_key_path = '~/.vagrant.d/insecure_private_key'
9
9
10
10
config . vm . define 'anxs' do |machine |
11
- machine . vm . box = "ubuntu/xenial64 "
12
- #machine.vm.box = "ubuntu/trusty64"
11
+ machine . vm . box = "bento/ubuntu-16.04 "
12
+ # machine.vm.box = "ubuntu/trusty64"
13
13
#machine.vm.box = "ubuntu/precise64"
14
14
#machine.vm.box = "debian/jessie64"
15
15
#machine.vm.box = "debian/wheezy64"
@@ -19,13 +19,6 @@ Vagrant.configure('2') do |config|
19
19
machine . vm . network :private_network , ip : '192.168.88.22'
20
20
machine . vm . hostname = 'anxs.local'
21
21
22
- # Install python 2.7 to unbuntu 16.04
23
- if machine . vm . box == "ubuntu/xenial64"
24
- machine . vm . provision "shell" do |s |
25
- s . inline = "sudo apt-get install -y python-minimal"
26
- end
27
- end
28
-
29
22
machine . vm . provision 'ansible' do |ansible |
30
23
ansible . playbook = 'tests/playbook.yml'
31
24
ansible . sudo = true
You can’t perform that action at this time.
0 commit comments