We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b60a77a + 3e3e048 commit a3a8a2eCopy full SHA for a3a8a2e
script/setup_host_fedora.sh
@@ -7,6 +7,13 @@ for i in $(seq 0 2); do
7
sleep "$i"
8
"${DNF[@]}" update && "${DNF[@]}" install "${RPMS[@]}" && break
9
done
10
+
11
+# criu-4.1-1 has a known bug (https://github.com/checkpoint-restore/criu/issues/2650)
12
+# which is fixed in criu-4.1-2 (currently in updates-testing). TODO: remove this later.
13
+if [[ $(rpm -q criu) == "criu-4.1-1.fc"* ]]; then
14
+ "${DNF[@]}" --enablerepo=updates-testing update criu
15
+fi
16
17
dnf clean all
18
19
# To avoid "avc: denied { nosuid_transition }" from SELinux as we run tests on /tmp.
0 commit comments