Reputation: 11
I am trying to use systemtap hooks on polkit functions, but I get an error that I need to install debuginfo. I can't find debuginfo for polkit package - polkit-0.115-11.el8.x86_64. Does anyone know where can I find it? Thnaks.
Upvotes: 0
Views: 276
Reputation: 2790
Try
export DEBUGINFOD_URLS=https://debuginfod.elfutils.org/
stap [...]
The polkit debuginfo rpm you're looking for is available in the public UBI8 repo, and mirrored at the above debuginfod server. See also: https://sourceware.org/elfutils/Debuginfod.html .
Upvotes: 0