summaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorPaul Sherwood <paul.sherwood@codethink.co.uk>2016-03-25 16:03:18 +0000
committerPaul Sherwood <paul.sherwood@codethink.co.uk>2016-03-25 16:35:35 +0000
commitf4444da5fa55e80755299bc87defab1d7153d188 (patch)
treeaee8387a6b71f9c1419470647cb89e4b8c22e852 /Vagrantfile
parentc9fbf5dbd972fdd2e73e5f6d7d1cef1b899cb527 (diff)
downloadybd-f4444da5fa55e80755299bc87defab1d7153d188.tar.gz
Fix install.sh to handle all the dependenciesput-all-deps-into-install.sh
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile6
1 files changed, 1 insertions, 5 deletions
diff --git a/Vagrantfile b/Vagrantfile
index c08b58e..057fe7a 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -11,12 +11,8 @@ Vagrant.configure(2) do |config|
end
config.vm.provision "shell", inline: <<-SHELL
- sudo apt-get update
- sudo apt-get install -y build-essential gawk git m4
- sudo wget https://bootstrap.pypa.io/get-pip.py
- sudo python get-pip.py; rm get-pip.py
- sudo pip install fs pyyaml sandboxlib jsonschema requests bottle
cd /src
+ ./ybd/install.sh
git clone git://git.baserock.org/baserock/baserock/definitions
echo "base: /src" > ybd/ybd.conf
SHELL