Skip to content

Fix: Include both /opt/cni/bin and /usr/lib/cni/bin in CRI-O default plugin dirs

The current PKGBUILD replaces /opt/cni/bin with /usr/lib/cni/bin, causing CRI-O to miss plugins installed only in /opt/cni/bin.

This adds a default drop-in at /etc/crio/crio.conf.d/00-plugin-path.conf with:

[crio.network]
plugin_dirs = ["/opt/cni/bin", "/usr/lib/cni/bin"]

to make CRI-O search both paths by default, as suggested in the ArchWiki.

Fixes “failed to find plugin in path [/usr/lib/cni/]” errors and solves the #5 (closed) issue.

Merge request reports

Loading