File tree Expand file tree Collapse file tree 2 files changed +0
-13
lines changed Expand file tree Collapse file tree 2 files changed +0
-13
lines changed Original file line number Diff line number Diff line change 1
1
VAGRANTFILE_API_VERSION = '2'
2
2
3
3
Vagrant . configure ( VAGRANTFILE_API_VERSION ) do |config |
4
-
5
- config . vm . define :ubuntu do |ubuntu |
6
- ubuntu . vm . box = 'hashicorp/precise32'
7
- ubuntu . vm . provision 'shell' , path : 'vagrant_ubuntu_provisioning.sh'
8
- end
9
-
10
4
config . vm . define :ubuntu_two_five do |ubuntu |
11
5
ubuntu . vm . box = 'hashicorp/precise32'
12
6
ubuntu . vm . provision 'shell' , path : 'vagrant_ubuntu_provisioning_two_five.sh'
13
7
end
14
-
15
- config . vm . define :centos do |centos |
16
- centos . vm . box = 'chef/centos-6.5'
17
- centos . vm . provision 'shell' , path : 'vagrant_centos_provisioning.sh'
18
- end
19
-
20
8
end
Original file line number Diff line number Diff line change @@ -60,7 +60,6 @@ run_tests_on_vm() {
60
60
61
61
main () {
62
62
run_tests_on_vm " ubuntu_two_five"
63
- run_tests_on_vm " ubuntu"
64
63
65
64
exit_message " $EXIT_VALUE "
66
65
exit " $EXIT_VALUE "
You can’t perform that action at this time.
0 commit comments