Updated dir structure to follow standard conventions

This commit is contained in:
Leonid Bugaev
2013-06-01 11:46:16 +00:00
parent 10540b3c03
commit 2efca73de4
9 changed files with 0 additions and 25 deletions
-1
View File
@@ -1 +0,0 @@
.vagrant
Vendored
-24
View File
@@ -1,24 +0,0 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "precise32"
config.vm.box_url = "http://files.vagrantup.com/precise32.box"
config.vm.provision :shell, :inline => "
if which go >/dev/null; then
echo 'second run'
else
apt-get install -y curl vim git build-essential
curl https://go.googlecode.com/files/go1.1.linux-amd64.tar.gz > ~/go1.1.tar.gz
cd ~/
tar xzf go1.1.tar.gz
echo 'export GOROOT=$HOME/go' >> ~/.profile
echo 'export PATH=$PATH:$GOROOT/bin' >> ~/.profile
fi
"
config.vm.synced_folder "~/.ssh", "/home/vagrant/.ssh"
end
BIN
View File
Binary file not shown.
View File