#!/bin/sh INSTALL_DI=true for opt in "$@"; do if [ x"$opt" = x"--without-di" ]; then INSTALL_DI=false fi done if $INSTALL_DI; then abrt-action-analyze-core --core=coredump -o build_ids || exit $? # On some systems debuginfo install needs root privileges. # Running a suided-to-abrt wrapper would make # debuginfo install fail even for root. # Therefore, if we are root, we don't use the wrapper. EXECUTABLE=/usr/libexec/abrt-action-install-debuginfo-to-abrt-cache if [ x"$(id -u)" = x"0" ]; then EXECUTABLE=abrt-action-install-debuginfo fi # Get VERSION_ID from crash's /etc/os-release (stored as os_info in a dump # directory). # We need this value for package managers to configure the correct # repositories (i.e. '$releasever' for DNF/Yum). EXTRA_ARGS= for osrel in "${DUMP_DIR:-.}/os_info_in_rootdir" "${DUMP_DIR:-.}/os_info" do if [ -e "$osrel" ]; then # shellcheck source=/dev/null . "$osrel" if [ -n "$VERSION_ID" ]; then EXTRA_ARGS="--releasever=$VERSION_ID" break fi fi done if ${EXECUTABLE} "${EXTRA_ARGS}" --size_mb=4096; then abrt-action-generate-backtrace && abrt-action-analyze-backtrace fi fi