From: Frank Ch. Eigler Date: Tue, 21 Apr 2020 21:11:18 +0000 (-0400) Subject: debuginfod sysconfig: add /var/lib/pulp as default search path X-Git-Tag: elfutils-0.180~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a68e12bfe531ed21bf9e5a5444f990bb3cb1247c;p=thirdparty%2Felfutils.git debuginfod sysconfig: add /var/lib/pulp as default search path Red Hat Satellite 6 (pulp era) stores RPMs under this hierarchy, so if a user is fortunate enough to have debuginfod on such a machine, we might as well index that. Signed-off-by: Frank Ch. Eigler --- diff --git a/config/ChangeLog b/config/ChangeLog index b5cc1da56..c3b5684af 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,7 @@ +2020-04-21 Frank Ch. Eigler + + * debuginfod.sysconfig (DEBUGINFOD_PATHS): Add /var/lib/pulp. + 2020-03-30 Mark Wielaard * upload-release.sh: chmod uploaded dir and files to make them diff --git a/config/debuginfod.sysconfig b/config/debuginfod.sysconfig index c56bcf3fc..446038742 100644 --- a/config/debuginfod.sysconfig +++ b/config/debuginfod.sysconfig @@ -3,7 +3,7 @@ DEBUGINFOD_PORT="8002" #DEBUGINFOD_VERBOSE="-v" # some common places to find trustworthy ELF/DWARF files and RPMs -DEBUGINFOD_PATHS="-t43200 -F -R /usr/lib/debug /usr/bin /usr/libexec /usr/sbin /usr/lib /usr/lib64 /var/cache/yum /var/cache/dnf" +DEBUGINFOD_PATHS="-t43200 -F -R /usr/lib/debug /usr/bin /usr/libexec /usr/sbin /usr/lib /usr/lib64 /var/cache/yum /var/cache/dnf /var/lib/pulp" # prefer reliability/durability over performance #DEBUGINFOD_PRAGMAS="-D 'pragma synchronous=full;'"