[Groonga-commit] groonga/groonga at 1202ddd [master] apt: support officail box and selfbuild one at the same time

Back to archive index

Kentaro Hayashi null+****@clear*****
Mon Aug 28 12:27:41 JST 2017


Kentaro Hayashi	2017-08-28 12:27:41 +0900 (Mon, 28 Aug 2017)

  New Revision: 1202ddd760d41542e25100bd79e724e098d8b818
  https://github.com/groonga/groonga/commit/1202ddd760d41542e25100bd79e724e098d8b818

  Message:
    apt: support officail box and selfbuild one at the same time

  Modified files:
    packages/apt/Vagrantfile

  Modified: packages/apt/Vagrantfile (+3 -3)
===================================================================
--- packages/apt/Vagrantfile    2017-08-27 23:21:55 +0900 (a85b76cb8)
+++ packages/apt/Vagrantfile    2017-08-28 12:27:41 +0900 (c0f0244a5)
@@ -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]
       hour_in_seconds = 60 * 60
       node.vm.boot_timeout = 1 * hour_in_seconds
       node.vm.provision(:shell, :privileged => false, :path => "build-deb.sh")
-------------- next part --------------
HTML����������������������������...
Télécharger 



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