# -*- 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.