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 11VAGRANTFILE_API_VERSION = '2'
22
33Vagrant . 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-
104 config . vm . define :ubuntu_two_five do |ubuntu |
115 ubuntu . vm . box = 'hashicorp/precise32'
126 ubuntu . vm . provision 'shell' , path : 'vagrant_ubuntu_provisioning_two_five.sh'
137 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-
208end
Original file line number Diff line number Diff line change @@ -60,7 +60,6 @@ run_tests_on_vm() {
6060
6161main () {
6262 run_tests_on_vm " ubuntu_two_five"
63- run_tests_on_vm " ubuntu"
6463
6564 exit_message " $EXIT_VALUE "
6665 exit " $EXIT_VALUE "
You can’t perform that action at this time.
0 commit comments