Happy to help, Alvaro.
On Wed, Feb 19, 2014 at 4:47 AM, Matej Macak <[email protected]> wrote: > Hi Alvaro, > > it worked, thank you very much! Especially thanks for going through the > trouble and running it on your system. > > All the best, > > Matej > > On Tuesday, February 18, 2014 3:04:22 AM UTC, Alvaro Miranda Aguilera > wrote: >> >> # -*- 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 |config| >> >> config.vm.box = >> "precise64" >> config.vm.box_url = "http://files.vagrantup.com/precise64.box" >> # config.vm.provision :shell, :inline => "sudo apt-get update" >> config.vm.provision :shell, :inline => "echo PATH $PATH" >> config.vm.provision :shell, :inline => "[ -f ~/.profile ] || touch >> ~/.profile" >> config.vm.provision :shell, :inline => "[ -f ~/.bash_profile ] || touch >> ~/.bash_profile" >> config.vm.provision :shell, :inline => "grep 'PATH=/usr/local/x86_64/bin' >> ~/.profile || echo 'export PATH=/usr/local/x86_64/ >> bin:$PATH' | tee -a ~/.profile" >> config.vm.provision :shell, :inline => "grep 'PATH=/usr/local/x86_64/bin' >> ~/.bash_profile || echo 'export PATH=/usr/local/x8 >> 6_64/bin:$PATH' | tee -a ~/.bash_profile" >> config.vm.provision :shell, :inline => ". ~/.profile" >> config.vm.provision :shell, :inline => ". ~/.bash_profile" >> config.vm.provision :shell, :inline => "echo PATH $PATH" >> >> end >> >> -- > 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 > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > -- 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 email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
