@@ -7,46 +7,11 @@ Vagrant.configure('2') do |config|
7
7
config . ssh . insert_key = false
8
8
config . ssh . private_key_path = '~/.vagrant.d/insecure_private_key'
9
9
10
- #
11
- # DISABLED
12
- #
13
- # config.vm.define 'ubuntu16.local' do |machine|
14
- #
15
- # machine.vm.box = "bento/ubuntu-16.04"
16
- # machine.vm.network :private_network, ip: '192.168.88.10'
17
- # machine.vm.hostname = 'ubuntu16.local'
18
- #
19
- # machine.vm.provision 'ansible' do |ansible|
20
- # ansible.playbook = 'tests/playbook.yml'
21
- # ansible.verbose = "vvv"
22
- # ansible.become = true
23
- # ansible.inventory_path = 'vagrant-inventory'
24
- # ansible.host_key_checking = false
25
- # end
26
- #
27
- # end
10
+ config . vm . define 'jammy64.local' do |machine |
28
11
29
- config . vm . define 'jessie64.local' do |machine |
30
-
31
- machine . vm . box = "debian/jessie64"
32
- machine . vm . network :private_network , ip : '192.168.88.20'
33
- machine . vm . hostname = 'jessie64.local'
34
-
35
- machine . vm . provision 'ansible' do |ansible |
36
- ansible . playbook = 'tests/playbook.yml'
37
- ansible . verbose = "vvv"
38
- ansible . become = true
39
- ansible . inventory_path = 'vagrant-inventory'
40
- ansible . host_key_checking = false
41
- end
42
-
43
- end
44
-
45
- config . vm . define 'wheezy64.local' do |machine |
46
-
47
- machine . vm . box = "debian/wheezy64"
48
- machine . vm . network :private_network , ip : '192.168.88.21'
49
- machine . vm . hostname = 'wheezy64.local'
12
+ machine . vm . box = "ubuntu/jammy64"
13
+ machine . vm . network :private_network , ip : '192.168.88.22'
14
+ machine . vm . hostname = 'jammy64.local'
50
15
51
16
machine . vm . provision 'ansible' do |ansible |
52
17
ansible . playbook = 'tests/playbook.yml'
@@ -58,39 +23,4 @@ Vagrant.configure('2') do |config|
58
23
59
24
end
60
25
61
- config . vm . define 'centos7.local' do |machine |
62
-
63
- machine . vm . box = "centos/7"
64
- machine . vm . network :private_network , ip : '192.168.88.30'
65
- machine . vm . hostname = 'centos7.local'
66
-
67
- machine . vm . provision 'ansible' do |ansible |
68
- ansible . playbook = 'tests/playbook.yml'
69
- ansible . verbose = "vvv"
70
- ansible . become = true
71
- ansible . inventory_path = 'vagrant-inventory'
72
- ansible . host_key_checking = false
73
- end
74
-
75
- end
76
-
77
- ##
78
- ## Fedora is disabled, as the build fails
79
- ##
80
- ## config.vm.define 'fedora27.local' do |machine|
81
- ##
82
- ## machine.vm.box = "fedora/27-cloud-base"
83
- ## machine.vm.network :private_network, ip: '192.168.88.40'
84
- ## machine.vm.hostname = 'fedora27.local'
85
- ##
86
- ## machine.vm.provision 'ansible' do |ansible|
87
- ## ansible.playbook = 'tests/playbook.yml'
88
- ## ansible.verbose = "vvv"
89
- ## ansible.become = true
90
- ## ansible.inventory_path = 'vagrant-inventory'
91
- ## ansible.host_key_checking = false
92
- ## end
93
- ##
94
- ## end
95
-
96
26
end
0 commit comments