From f0daf65100dae51ff31760c0f1f184ff2adcb33e Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Sat, 9 May 2020 13:54:27 -0700 Subject: [PATCH] Vagrantfile: use criu from stable repo CRIU 3.14 has made its way to the F32 stable repo, let's use it. Signed-off-by: Kir Kolyshkin --- Vagrantfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 13c69813..cb4e0286 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -13,17 +13,14 @@ Vagrant.configure("2") do |config| v.cpus = 2 end config.vm.provision "shell", inline: <<-SHELL - curl -OSs https://kojipkgs.fedoraproject.org/packages/criu/3.14/1.fc32/x86_64/criu-3.14-1.fc32.x86_64.rpm cat << EOF | dnf -y shell config exclude kernel,kernel-core config install_weak_deps false -localinstall criu-3.14-1.fc32.x86_64.rpm update -install iptables gcc make golang-go libseccomp-devel bats jq git-core +install iptables gcc make golang-go libseccomp-devel bats jq git-core criu ts run EOF dnf clean all - rm -f criu-3.14-1.fc32.x86_64.rpm # Add a user for rootless tests useradd -u2000 -m -d/home/rootless -s/bin/bash rootless