Skip to content

Commit 35e9318

Browse files
committed
ci(fedora): Stop installing vpnc for now
Installing /usr/bin/vpnc brings vpnc-consoleuser, which then fails to install, see https://bugzilla.redhat.com/show_bug.cgi?id=2341517. Without this, I get conflicts about /usr/bin/vpnc and /usr/bin/vpnc-disconnect, between vpnc-consoleuser-0.5.3-48.svn550.fc41.x86_64 and vpnc-0.5.3-48.svn550.fc41.x86_64
1 parent 0adcc1a commit 35e9318

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/docker/fedoradev/install-packages.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ while read -r file; do
1818
/*) printf "%s\n" "$file" ;;
1919
*) printf "%s\n" {/usr,}/bin/"$file" ;;
2020
esac
21-
done |
21+
done | grep -v vpnc |
2222
xargs dnf -y install --skip-unavailable --skip-broken
23+
# /usr/bin/vpnc installs vpnc-consoleuser, which currently fails to install in
24+
# rawhide (f42): bugzilla.redhat.com/show_bug.cgi?id=2341517
2325
# --skip-broken: avoid failing on not found packages. Also prevents actually
2426
# broken packages from failing the install which is not what we want, but
2527
# there doesn't seem to be way to cleanly just skip the not found ones.

0 commit comments

Comments
 (0)