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 2014/03/28 00:28:19 UTC

git commit: Add Ubuntu 14.04 (Trusty) Vagrant images

Repository: trafficserver
Updated Branches:
  refs/heads/master 006ede8cf -> 44d1c6d01


Add Ubuntu 14.04 (Trusty) Vagrant images


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

Branch: refs/heads/master
Commit: 44d1c6d0197397e774318d49fa639b9ec65f461b
Parents: 006ede8
Author: James Peach <jp...@apache.org>
Authored: Thu Mar 27 16:14:24 2014 -0700
Committer: James Peach <jp...@apache.org>
Committed: Thu Mar 27 16:14:24 2014 -0700

----------------------------------------------------------------------
 Vagrantfile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/44d1c6d0/Vagrantfile
----------------------------------------------------------------------
diff --git a/Vagrantfile b/Vagrantfile
index 3da6359..594ccf9 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -38,6 +38,8 @@ $network = {
 
   "saucy64"   => "192.168.100.21",
   "saucy32"   => "192.168.100.22",
+  "trusty64"  => "192.168.100.23",
+  "trusty32"  => "192.168.100.24",
 }
 
 $vmspec = {
@@ -81,11 +83,12 @@ Vagrant.configure("2") do |config|
   # Always forward SSH keys to VMs.
   config.ssh.forward_agent = true
 
+  # Ubuntu 14.04 (Trusty Tahr)
   # Ubuntu 13.04 (Raring Ringtail)
   # Ubuntu 12.10 (Quantal Quetzal)
   # Ubuntu 12.04 LTS (Precise Pangolin)
   ["i386", "amd64"].each { |arch|
-    ['saucy', 'raring', 'quantal', 'precise'].each { |release|
+    ['saucy', 'raring', 'quantal', 'precise', 'trusty' ].each { |release|
       n = { "i386" => "32", "amd64" => "64" }[arch]
       config.vm.define "#{release}#{n}" do | config |
         config.vm.box = "#{release}#{n}"