[vagrant-up] Adding a setting in the Vagrantfile to disable a box

2014-02-17 Thread ramon
[ I apologise for this issue I posted to the github repo (https://github.com/mitchellh/vagrant/issues/2983), when it's just a question and not a bug ] Hi all, I'd like to add two boxes called *primary* and *secondary* to a Vagrantfile, but only startup *primary* when I run vagrant up

[vagrant-up] DownLoadLinkTOVagrant-WindowsPlugin

2014-02-17 Thread fazeem mohammed
Can any body share the download link of Vagrant Windows Plugin? Due to Proxy Issue I cannot rund PlugIn install successfully -- You received this message because you are subscribed to the Google Groups Vagrant group. To unsubscribe from this group and stop receiving emails from it, send an

[vagrant-up] Re: Vagrant Provisioning via Shell Does not Change System Path

2014-02-17 Thread Matej Macak
Hi Alvaro, does this work for you? When I used this in my Vagrantfile, it did not result in the export path being added to my .profile file (even after the provisioning was finished). I have even used the following codehttps://github.com/exratione/vagrant-provision-rebootto reboot during my

[vagrant-up] Re: Adding a setting in the Vagrantfile to disable a box

2014-02-17 Thread Matt Palmer
On Mon, Feb 17, 2014 at 12:37:15AM -0800, ra...@future500.nl wrote: I'd like to add two boxes called *primary* and *secondary* to a Vagrantfile, but only startup *primary* when I run vagrant up Starting the *secondary* box would require an explicit vagrant up secondary Is this

Re: [vagrant-up] Adding a setting in the Vagrantfile to disable a box

2014-02-17 Thread Alvaro Miranda Aguilera
My suggestion will be, in the vagrant file, around the secondary machine write this: if ENV[secondary] BLOCK FOR SECONDARY BOX end so you can then do secondary=true vagrant up secondary On Mon, Feb 17, 2014 at 9:37 PM, ra...@future500.nl wrote: [ I apologise for this issue I

Re: [vagrant-up] Re: Vagrant Provisioning via Shell Does not Change System Path

2014-02-17 Thread Matej Macak
Here are the contents of my Vagrantfile (no reboot option, just tested) on a precise 64 box: # -*- mode: ruby -*- # vi: set ft=ruby : # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! VAGRANTFILE_API_VERSION = 2 Vagrant.configure(VAGRANTFILE_API_VERSION) do

Re: [vagrant-up] Re: Vagrant Provisioning via Shell Does not Change System Path

2014-02-17 Thread Alvaro Miranda Aguilera
it works for me: I add at the end one echo PATH $PATH check this output: alvaros-mini:matej alvarom$ vagrant provision .. [default] Running: inline script PATH /usr/local/x86_64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/opt/vagrant_ruby/bin alvaros-mini:matej