Skip to content

Commit 337fb61

Browse files
committed
jammy64 only
1 parent f8c87f5 commit 337fb61

File tree

2 files changed

+5
-79
lines changed

2 files changed

+5
-79
lines changed

Vagrantfile

+4-74
Original file line numberDiff line numberDiff line change
@@ -7,46 +7,11 @@ Vagrant.configure('2') do |config|
77
config.ssh.insert_key = false
88
config.ssh.private_key_path = '~/.vagrant.d/insecure_private_key'
99

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|
2811

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'
5015

5116
machine.vm.provision 'ansible' do |ansible|
5217
ansible.playbook = 'tests/playbook.yml'
@@ -58,39 +23,4 @@ Vagrant.configure('2') do |config|
5823

5924
end
6025

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-
9626
end

vagrant-inventory

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,2 @@
11
[anxs]
2-
## DISABLED ## ubuntu16.local ansible_ssh_host=192.168.88.10 ansible_ssh_port=22 ansible_ssh_user=vagrant ansible_ssh_private_key_file=~/.vagrant.d/insecure_private_key
3-
jessie64.local ansible_ssh_host=192.168.88.20 ansible_ssh_port=22 ansible_ssh_user=vagrant ansible_ssh_private_key_file=~/.vagrant.d/insecure_private_key
4-
wheezy64.local ansible_ssh_host=192.168.88.21 ansible_ssh_port=22 ansible_ssh_user=vagrant ansible_ssh_private_key_file=~/.vagrant.d/insecure_private_key
5-
centos7.local ansible_ssh_host=192.168.88.31 ansible_ssh_port=22 ansible_ssh_user=vagrant ansible_ssh_private_key_file=~/.vagrant.d/insecure_private_key
6-
## DISABLED ## fedora27.local ansible_ssh_host=192.168.88.40 ansible_ssh_port=22 ansible_ssh_user=vagrant ansible_ssh_private_key_file=~/.vagrant.d/insecure_private_key
2+
jammy64.local ansible_ssh_host=192.168.88.22 ansible_ssh_port=22 ansible_ssh_user=vagrant ansible_ssh_private_key_file=~/.vagrant.d/insecure_private_key

0 commit comments

Comments
 (0)