This file is indexed.

/usr/lib/rpm/debuginfo.prov is in rpm 4.14.1+dfsg1-2.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#!/bin/sh

while read instfile; do
  case "$instfile" in
    */usr/lib/debug/.build-id/*.debug)
      if [ -f "$instfile" ]; then
        BUILDID=$(echo "$instfile" | sed -ne 's|.*/usr/lib/debug/.build-id/\([0-9a-f]\+\)/\([0-9a-f]\+\)\.debug|\1\2|p')
        if [ -n "$BUILDID" ]; then
          echo "debuginfo(build-id) = $BUILDID"
        fi
      fi
      ;;
  esac
done