From fc5a9d3f28eee17e426d09affb815548ebca7bbe Mon Sep 17 00:00:00 2001 From: Karel Minarik Date: Mon, 30 Jul 2012 12:07:45 +0200 Subject: [PATCH] Added Ubuntu 12.04 LTS (Precise) as the primary box into Vagrant file --- Vagrantfile | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 9f90a7c00..67403b4f9 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -2,9 +2,10 @@ # # Support: # -# * lucid32: Ubuntu Lucid 32 bit -# * lucid64: Ubuntu Lucid 64 bit (primary box) -# * centos6: CentOS 6 32 bit +# * precise64: Ubuntu 12.04 (Precise) 64 bit (primary box) +# * lucid32: Ubuntu 10.04 (Lucid) 32 bit +# * lucid64: Ubuntu 10.04 (Lucid) 64 bit +# * centos6: CentOS 6 32 bit # # See: # @@ -22,11 +23,19 @@ rescue LoadError => e end distributions = { + :precise64 => { + :url => 'http://files.vagrantup.com/precise64.box', + :run_list => %w| minitest-handler apt java vim nginx monit elasticsearch elasticsearch::proxy_nginx elasticsearch::plugin_aws |, + :ip => '33.33.33.10', + :primary => true, + :node => {} + }, + :lucid64 => { :url => 'http://files.vagrantup.com/lucid64.box', :run_list => %w| minitest-handler apt java vim nginx monit elasticsearch elasticsearch::proxy_nginx elasticsearch::plugin_aws |, :ip => '33.33.33.10', - :primary => true, + :primary => false, :node => {} },