aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Pärtel <martin.partel@gmail.com>2022-06-24 20:43:14 +0300
committerMartin Pärtel <martin.partel@gmail.com>2022-06-24 20:43:14 +0300
commit6c5d8f0d9097a3829b3541d4be7f36b632ef1159 (patch)
tree4ec57fed6fcef36286a91baf04dbb3f52abb9070
parent1532c70de7346e2715faa8b9bf93ed149fbc11e0 (diff)
downloadbindfs-6c5d8f0d9097a3829b3541d4be7f36b632ef1159.tar.gz
Fixed centos8 Vagrantfile
-rw-r--r--vagrant/centos8/Vagrantfile5
1 files changed, 5 insertions, 0 deletions
diff --git a/vagrant/centos8/Vagrantfile b/vagrant/centos8/Vagrantfile
index 3676bc2..af2cba8 100644
--- a/vagrant/centos8/Vagrantfile
+++ b/vagrant/centos8/Vagrantfile
@@ -16,6 +16,11 @@ Vagrant.configure("2") do |config|
end
config.vm.provision "shell", inline: <<-SHELL
+ # CentOS 8 is EOL
+ # https://www.cyberithub.com/solved-failed-to-download-metadata-for-repo-appstream/
+ sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
+ sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*
+
yum install -y fuse fuse-devel gcc make pkg-config ruby valgrind
echo user_allow_other > /etc/fuse.conf
SHELL