summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Sherwood <devcurmudgeon@gmail.com>2020-05-15 18:41:16 +0100
committerPaul Sherwood <devcurmudgeon@gmail.com>2020-05-15 18:41:16 +0100
commitc792a4d5dc8229cb031e2a250aadff1dfae68c69 (patch)
tree8325030651f9fd8c5bc5056ca2284fa5d336a940
parent94ed3c2f4145d4b1c3a21b4f23dda70166280370 (diff)
downloadybd-c792a4d5dc8229cb031e2a250aadff1dfae68c69.tar.gz
Fix to work in 2020
-rw-r--r--Vagrantfile10
-rwxr-xr-xinstall_dependencies.sh2
2 files changed, 6 insertions, 6 deletions
diff --git a/Vagrantfile b/Vagrantfile
index c972d09..ec36d90 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -6,15 +6,15 @@ Vagrant.configure(2) do |config|
# Display the VirtualBox GUI when booting the machine
# vb.gui = true
# Customize the VM:
- vb.memory = "1024"
- vb.cpus = "1"
+ vb.memory = "4096"
+ vb.cpus = "4"
end
config.vm.provision "shell", inline: <<-SHELL
- cd /src
- git clone git://git.baserock.org/baserock/baserock/definitions
- cd ybd
+ cd /src/ybd
./install_dependencies.sh
echo "base: /src" > ./ybd.conf
+ cd ..
+ git clone git://git.baserock.org/baserock/baserock/definitions
SHELL
end
diff --git a/install_dependencies.sh b/install_dependencies.sh
index 603d10a..fdbbad5 100755
--- a/install_dependencies.sh
+++ b/install_dependencies.sh
@@ -92,4 +92,4 @@ fi
$SUDO pip install -U pip
-$SUDO pip install -U -r requirements.freeze.txt
+$SUDO pip install --ignore-installed -U -r requirements.freeze.txt