TL;DR: we need to change the 'debug' repo-id to 'base-debuginfo' in CentOS-Debuginfo.repo<br />
<br />
It appears that the debug repository name doesn't match the search criteria used in debuginfo-install. Around line 90, the appropriate checks are:<br />
<br />
for repoid in repos:<br />
if repoid.endswith('-rpms'):<br />
di = repoid[:-5] + '-debug-rpms'<br />
else:<br />
di = '%s-debuginfo' % repoid
↧