Kouhei Sutou
null+****@clear*****
Fri Nov 4 01:34:54 JST 2016
Kouhei Sutou 2016-11-04 01:34:54 +0900 (Fri, 04 Nov 2016) New Revision: cb5ab90e73dfdd5c6a694557ffd0539d49e003c3 https://github.com/pgroonga/pgroonga/commit/cb5ab90e73dfdd5c6a694557ffd0539d49e003c3 Message: Use bento name Modified files: packages/yum/Vagrantfile Modified: packages/yum/Vagrantfile (+6 -7) =================================================================== --- packages/yum/Vagrantfile 2016-11-04 01:33:52 +0900 (048d9e0) +++ packages/yum/Vagrantfile 2016-11-04 01:34:54 +0900 (f74f332) @@ -8,30 +8,29 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| vms = [ { :id => "centos-5-i386", - :box_url => "http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_centos-5.11-i386_chef-provisionerless.box", + :box => "bento/centos-5.11-i386", }, { :id => "centos-5-x86_64", - :box_url => "http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_centos-5.11_chef-provisionerless.box", + :box => "bento/centos-5.11", }, { :id => "centos-6-i386", - :box_url => "http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_centos-6.7-i386_chef-provisionerless.box", + :box => "bento/centos-6.7-i386", }, { :id => "centos-6-x86_64", - :box_url => "http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_centos-6.7_chef-provisionerless.box", + :box => "bento/centos-6.7", }, { :id => "centos-7-x86_64", - :box_url => "http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_centos-7.2_chef-provisionerless.box", + :box => "bento/centos-7.2", }, ] vms.each do |vm| config.vm.define(vm[:id]) do |node| - node.vm.box = vm[:id] - node.vm.box_url = vm[:box_url] + node.vm.box = vm[:box] node.vm.provision(:shell, :path => "build-rpm.sh") end end -------------- next part -------------- HTML����������������������������...Download