We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f09eb1 commit b1e8524Copy full SHA for b1e8524
test/docker/fedoradev/install-packages.sh
@@ -18,8 +18,11 @@ while read -r file; do
18
/*) printf "%s\n" "$file" ;;
19
*) printf "%s\n" {/usr,}/bin/"$file" ;;
20
esac
21
-done |
+done | grep -v vpnc |
22
xargs dnf -y install --skip-unavailable --skip-broken
23
+# /usr/bin/vpnc installs vpnc-consoleuser, which fails since bin and sbin were
24
+# unified. See bugzilla.redhat.com/show_bug.cgi?id=2341517
25
+# and https://fedoraproject.org/wiki/Changes/Unify_bin_and_sbin
26
# --skip-broken: avoid failing on not found packages. Also prevents actually
27
# broken packages from failing the install which is not what we want, but
28
# there doesn't seem to be way to cleanly just skip the not found ones.
0 commit comments