1################# 2# debuginfod command line options 3# see [man debuginfod] 4 5# required 6DEBUGINFOD_PORT="8002" 7 8# add more -v for more verbosity 9DEBUGINFOD_EXTRA_ARGS="-t43200 -F -R" 10 11# some common places to find trustworthy ELF/DWARF files and RPMs 12DEBUGINFOD_PATHS="/usr/lib/debug /usr/bin /usr/libexec /usr/sbin /usr/lib /usr/lib64 /var/cache/yum /var/cache/dnf /var/lib/pulp" 13 14# prefer sqlite database durability over performance 15#DEBUGINFOD_PRAGMAS="-D 'pragma synchronous=full;'" 16 17################# 18# these environment variables affect federated queries to upstream servers 19# see [man debuginfod-client-config] 20 21#DEBUGINFOD_URLS="http://secondhost:8002 http://thirdhost:8002" 22#DEBUGINFOD_TIMEOUT="5" 23#DEBUGINFOD_RETRY_LIMIT="2" 24#DEBUGINFOD_CACHE_DIR="" 25#DEBUGINFOD_VERBOSE="1" 26#DEBUGINFOD_PROGRESS="1" 27