From: Frank Ch. Eigler Date: Wed, 17 Aug 2022 13:01:23 +0000 (-0400) Subject: config/debuginfod.sysconfig: Clarify & classify the variables X-Git-Tag: elfutils-0.188~35 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=61066138c0fe670b57ac6393b8f24de2fb6c5953;p=thirdparty%2Felfutils.git config/debuginfod.sysconfig: Clarify & classify the variables Some of them are for debuginfod command line; others are environment variables for the embedded client library. Signed-off-by: Frank Ch. Eigler --- diff --git a/config/ChangeLog b/config/ChangeLog index cfb37b422..a444457ef 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,7 @@ +2022-08-17 Frank Ch. Eigler + + * debuginfod.sysconfig: Clarify cmdline vs client-env variables. + 2022-05-03 Mark Wielaard * profile.csh.in: Move the 2>/dev/null inside the sh -c '' quotes. diff --git a/config/debuginfod.sysconfig b/config/debuginfod.sysconfig index ae49a5af6..4ffb7e02d 100644 --- a/config/debuginfod.sysconfig +++ b/config/debuginfod.sysconfig @@ -1,16 +1,26 @@ -# +################# +# debuginfod command line options +# see [man debuginfod] + +# required DEBUGINFOD_PORT="8002" + +# add more -v for more verbosity DEBUGINFOD_EXTRA_ARGS="-t43200 -F -R" -#DEBUGINFOD_VERBOSE="-v" # some common places to find trustworthy ELF/DWARF files and RPMs DEBUGINFOD_PATHS="/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 +# prefer sqlite database durability over performance #DEBUGINFOD_PRAGMAS="-D 'pragma synchronous=full;'" -# upstream debuginfods +################# +# these environment variables affect federated queries to upstream servers +# see [man debuginfod-client-config] + #DEBUGINFOD_URLS="http://secondhost:8002 http://thirdhost:8002" #DEBUGINFOD_TIMEOUT="5" #DEBUGINFOD_RETRY_LIMIT="2" #DEBUGINFOD_CACHE_DIR="" +#DEBUGINFOD_VERBOSE="1" +#DEBUGINFOD_PROGRESS="1"