From a9f84a0263e503bf022dccd07bbdd1d18909efab Mon Sep 17 00:00:00 2001 From: Martin Chacon Piza Date: Fri, 1 Oct 2021 16:26:59 +0200 Subject: [PATCH] Fix Vagrantfile - Uncomment Ubuntu upgrade/update lines. On Sept. 30th 2021 ca-certificates DST Root CA X3 expired, until a new Bento box with the update is released we need to update it. - Purge simplejson before to stack Devstack, that library should be handled by pip. Change-Id: If23af3415be43bcb0b5b5de284c3b809c30de453 --- devstack/Vagrantfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/devstack/Vagrantfile b/devstack/Vagrantfile index 38e73a26a..5cb672904 100644 --- a/devstack/Vagrantfile +++ b/devstack/Vagrantfile @@ -39,8 +39,8 @@ Vagrant.configure(2) do |config| end config.vm.provision "shell", privileged: false, inline: <<-SHELL - # sudo apt-get update - # sudo apt-get -y upgrade + sudo apt-get update + sudo apt-get -y upgrade sudo apt-get -y install git lnav if [ $http_proxy ]; then @@ -190,6 +190,7 @@ enable_plugin monasca-api https://opendev.org/openstack/monasca-api enable_plugin monasca-tempest-plugin https://opendev.org/openstack/monasca-tempest-plugin ' > local.conf + sudo apt purge -y python3-simplejson ./stack.sh # Cache downloaded files for future runs if [ -d "/tmp/vagrant-cache" ]; then