bash.d/20-debuginfod

7 lines
309 B
Text
Raw Permalink Normal View History

# shellcheck shell=bash
# Configure debuginfod for automatic debug symbol downloads
# shellcheck disable=SC2254
if compgen -G '/usr/lib/*/libdebuginfod.so*' &>/dev/null; then
export DEBUGINFOD_URLS="https://debuginfod.debian.net/ https://debuginfod.fedoraproject.org/"
export DEBUGINFOD_PROGRESS=1
fi