From 21154f56a59023e86a408c9b73adb83a9a4308b9 Mon Sep 17 00:00:00 2001 From: Alexander Trost Date: Tue, 24 Mar 2020 00:42:10 +0100 Subject: [PATCH 1/2] *: install docker from official docker repos Install Docker from official Docker repos instead of OS repositories. This will get us a more uptodate Docker version. Signed-off-by: Alexander Trost --- vagrantfiles/Vagrantfile | 1 + vagrantfiles/centos/common | 18 ++++++++++++++++++ vagrantfiles/fedora/common | 15 +++++++++++++++ vagrantfiles/fedora/master | 2 +- vagrantfiles/ubuntu/common | 18 ++++++++++++++++++ vagrantfiles/ubuntu/master | 19 ++++--------------- vagrantfiles/ubuntu/pre | 8 ++++++++ 7 files changed, 65 insertions(+), 16 deletions(-) diff --git a/vagrantfiles/Vagrantfile b/vagrantfiles/Vagrantfile index a93958c..8e8d2b6 100644 --- a/vagrantfiles/Vagrantfile +++ b/vagrantfiles/Vagrantfile @@ -94,6 +94,7 @@ Vagrant.configure('2') do |config| subconfig.vm.provision :shell, inline: $osPrepareScript end subconfig.vm.provision :shell, inline: $prepareScript + subconfig.vm.provision :shell, inline: $containerRuntimeInstallScript subconfig.vm.provision :shell, inline: $baseInstallScript subconfig.vm.provision :shell, inline: $verifyNodeScript # Run diskandreboot plugin to add VirtualBox disks to VMs diff --git a/vagrantfiles/centos/common b/vagrantfiles/centos/common index ea7b1eb..f999c47 100644 --- a/vagrantfiles/centos/common +++ b/vagrantfiles/centos/common @@ -1,5 +1,6 @@ $box_image = ENV['BOX_IMAGE'] || 'centos/7'.freeze +# Stop and disable firewalld service $osPrepareScript = <