[Bug 1184257] hardcode knowledge about https://debuginfod.opensuse.org/ in debuginfod client
http://bugzilla.opensuse.org/show_bug.cgi?id=1184257 http://bugzilla.opensuse.org/show_bug.cgi?id=1184257#c1 --- Comment #1 from Tom de Vries <tdevries@suse.com> --- I wrote the following script to verify the assumption: ... #!/bin/sh packages=$(zypper packages | grep debugsource | sed 's/[^|]*|//' | awk '{print $3}') for p in $packages; do sudo zypper install -y --download-only $p 1>&2 rpm=$(find /var/cache/zypp -iname $p*rpm) n=$(echo $rpm | wc -w) if [ $n -ne 1 ]; then echo "Did not find single rpm: \"$rpm\"" > /dev/stderr continue fi rpm -qlp $rpm done ... It generates a list of all the source files in all the source packages. I ran it for quite a bit, and only /usr/src/debug files were found. -- You are receiving this mail because: You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@suse.com