Files
virt-manager/virt-manager-supportconfig
Charles Arnold f7fba1adde - Upstream bug fixes (bsc#1027942) (jsc#PED-2104)
001-cli-disk-Add-driver.metadata_cache-options.patch
  002-tests-cli-Fix-test-output-after-previous-commit.patch
  003-fsdetails-Fix-an-error-with-source.socket-of-virtiofs.patch
  004-cli-Drop-unnecessary-disk-prop-aliases.patch
  005-tests-testdriver-Add-filesystem-socket-example.patch
  006-virtinstall-split-no_install-conditional-apart-to-track-code-coverage.patch
  007-virtinstall-fix-regression-with-boot-and-no-install-method.patch
  008-tests-Add-a-compat-check-for-linux2020-in-amd-sev-test-case.patch
  009-cli-cpu-Add-maxphysaddr.mode-bits-options.patch
  010-virt-install-help-required-options-are-wrong.patch
  011-cloner-Sync-uuid-and-sysinfo-system-uuid.patch
  012-virt-install-unattended-and-cloud-init-conflict.patch
  013-virt-install-Reuse-cli.fail_conflicting.patch
  014-cli-support-boot-loader.stateless-.patch
  015-diskbackend-Drop-support-for-sheepdog.patch
  016-Fix-pylint-pycodestyle-warnings-with-latest-versions.patch
  017-tests-cpio-set-owner-to-00.patch
  018-addhardware-Fix-backtrace-when-controller.index-is-None.patch
  019-Clean-up-FileChooser-usage-a-bit.patch
  020-guest-Query-availability-of-usb-redirdevs-in-domcaps.patch
  021-guest-Query-availability-of-spicevmc-channels-in-domcaps.patch
  022-tests-Add-domcaps-coverage-for-usb-redir-spicevmc-channel-checks.patch
  023-tests-Update-to-latest-kvm-domcaps.patch
  024-progress-Fix-showing-correct-final-total.patch
  025-virtinstall-Fix-the-allocating-disk-size-printed-by-the-progress-bar.patch
  026-virtinstall-Hide-total_size-in-the-progress-bar-if-it-doesnt-need.patch
  027-asyncjob-Fix-backtrace-when-no-cursor-theme-installed.patch
  028-tests-test-win11-XML-generation.patch
  029-asyncjob-Remove-unused-import.patch

OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=605
2023-11-21 16:06:08 +00:00

25 lines
750 B
Bash

#!/bin/bash
#############################################################
# Name: Supportconfig Plugin for virt-manager
# Description: Gathers important troubleshooting information
# about virt-manager
#############################################################
RCFILE="/usr/lib/supportconfig/resources/supportconfig.rc"
OF="output-virt-manager.txt"
VIRTMAN_LOG_DIR="/root/.cache/virt-manager"
VIRTMAN_LOG_FILES=""
if [ -s $RCFILE ]; then
if ! source $RCFILE; then
log_write $OF "ERROR: Initializing resource file: $RCFILE"
exit 1
fi
fi
rpm_verify $OF virt-manager || exit 111
test -d $VIRTMAN_LOG_DIR && VIRTMAN_LOG_FILES="$(find -L $VIRTMAN_LOG_DIR/ -type f)"
log_files $OF 0 "$VIRTMAN_LOG_FILES"