[Groonga-mysql-commit] mroonga/mroonga at 7ef6994 [master] yum: support official box and self build box at the same time

Back to archive index

Kentaro Hayashi null+****@clear*****
Mon Aug 28 17:57:11 JST 2017


Kentaro Hayashi	2017-08-28 17:57:11 +0900 (Mon, 28 Aug 2017)

  New Revision: 7ef6994982ef9370421950c45ec1478f5fca3968
  https://github.com/mroonga/mroonga/commit/7ef6994982ef9370421950c45ec1478f5fca3968

  Message:
    yum: support official box and self build box at the same time

  Modified files:
    packages/apt/Vagrantfile

  Modified: packages/apt/Vagrantfile (+3 -3)
===================================================================
--- packages/apt/Vagrantfile    2017-08-28 22:52:38 +0900 (3e2d5f8e)
+++ packages/apt/Vagrantfile    2017-08-28 17:57:11 +0900 (59d4171f)
@@ -27,10 +27,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
   vms.each do |vm|
     config.vm.define(vm[:id]) do |node|
       # Use official box
-      #node.vm.box = vm[:box]
+      node.vm.box = vm[:box] if vm[:box]
       # Use box and box_url until official box is released
-      node.vm.box = vm[:id]
-      node.vm.box_url = vm[:box_url]
+      node.vm.box = vm[:id] if vm[:box_url]
+      node.vm.box_url = vm[:box_url] if vm[:box_url]
       node.vm.provision(:shell, :path => "build-deb.sh")
       node.vm.provider("virtualbox") do |virtual_box|
         virtual_box.memory = (ENV["VM_MEMORY"] || 768).to_i
-------------- next part --------------
HTML����������������������������...
Télécharger 



More information about the Groonga-mysql-commit mailing list
Back to archive index