You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by jp...@apache.org on 2013/04/22 22:50:30 UTC

[1/3] git commit: Provision lucid64 vagrant box

Updated Branches:
  refs/heads/master 6f52a3c3e -> 1614246e7


Provision lucid64 vagrant box


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/92ceec4d
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/92ceec4d
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/92ceec4d

Branch: refs/heads/master
Commit: 92ceec4d4e48765e3e30bee2712166844927d3ff
Parents: 6f52a3c
Author: James Peach <jp...@apache.org>
Authored: Mon Apr 22 11:37:45 2013 -0700
Committer: James Peach <jp...@apache.org>
Committed: Mon Apr 22 11:37:45 2013 -0700

----------------------------------------------------------------------
 Vagrantfile |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/92ceec4d/Vagrantfile
----------------------------------------------------------------------
diff --git a/Vagrantfile b/Vagrantfile
index 4c9fc0b..c1704a2 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -64,6 +64,10 @@ Vagrant.configure("2") do |config|
     config.vm.box = "lucid64"
     config.vm.network :private_network, ip: $network["lucid64"]
     config.vm.box_url = "http://files.vagrantup.com/lucid64.box"
+    config.vm.provision :puppet do |puppet|
+      puppet.manifests_path = "contrib/manifests"
+      puppet.manifest_file = "debian.pp"
+    end
   end
 
   config.vm.define :freebsd do | config |


[2/3] git commit: Add libhwloc-dev to Ubuntu vagrant boxes

Posted by jp...@apache.org.
Add libhwloc-dev to Ubuntu vagrant boxes


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/f3e38221
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/f3e38221
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/f3e38221

Branch: refs/heads/master
Commit: f3e3822102a1f8a0a9f8a301b0bab8fef2aaff44
Parents: 92ceec4
Author: James Peach <jp...@apache.org>
Authored: Mon Apr 22 11:38:21 2013 -0700
Committer: James Peach <jp...@apache.org>
Committed: Mon Apr 22 11:38:21 2013 -0700

----------------------------------------------------------------------
 contrib/manifests/debian.pp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/f3e38221/contrib/manifests/debian.pp
----------------------------------------------------------------------
diff --git a/contrib/manifests/debian.pp b/contrib/manifests/debian.pp
index db5873e..e856c98 100644
--- a/contrib/manifests/debian.pp
+++ b/contrib/manifests/debian.pp
@@ -17,7 +17,7 @@
 # Base ATS build dependencies.
 package {[
     'gcc', 'g++', 'automake', 'autoconf', 'libtool', 'pkg-config',
-    'libssl-dev', 'tcl-dev', 'libexpat1-dev', 'libpcre3-dev',
+    'libssl-dev', 'tcl-dev', 'libexpat1-dev', 'libpcre3-dev', 'libhwloc-dev',
     'libcap-dev', 'libcap2', 'bison', 'flex', 'make',
   ]:
   ensure => latest


[3/3] git commit: Install hwloc-devel on RedHat vagrant boxes

Posted by jp...@apache.org.
Install hwloc-devel on RedHat vagrant boxes


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/1614246e
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/1614246e
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/1614246e

Branch: refs/heads/master
Commit: 1614246e7e66499efa31d2fa77e5c574991989a5
Parents: f3e3822
Author: James Peach <jp...@apache.org>
Authored: Mon Apr 22 13:16:07 2013 -0700
Committer: James Peach <jp...@apache.org>
Committed: Mon Apr 22 13:16:07 2013 -0700

----------------------------------------------------------------------
 contrib/manifests/redhat.pp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/1614246e/contrib/manifests/redhat.pp
----------------------------------------------------------------------
diff --git a/contrib/manifests/redhat.pp b/contrib/manifests/redhat.pp
index 956c5d7..6fcd7fc 100644
--- a/contrib/manifests/redhat.pp
+++ b/contrib/manifests/redhat.pp
@@ -18,7 +18,7 @@
 package {[
     'gcc', 'automake', 'autoconf', 'libtool',
     'openssl-devel', 'tcl-devel', 'expat-devel', 'pcre-devel',
-    'libcap-devel', 'bison', 'flex', 'make',
+    'hwloc-devel', 'libcap-devel', 'bison', 'flex', 'make',
   ]:
   ensure => latest
 }