This file is indexed.

/usr/lib/ibdm1.2/pkgIndex.tcl is in libibdm1 1.2-OFED-1.4.2-1.1.

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

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
# Main idea here is to intialize the ibnl_path
proc ibdmLoad1.2 {dir} {
   global ibnl_path
   global env
   # support env variable for extending the search path for
   # system definition files.
   if {[info exists env(IBADM_IBNL_PATH)]} {
      set ibnl_path "$env(IBADM_IBNL_PATH)"
   } else {
      set ibnl_path ""
   }
   puts "Loading IBDM from: $dir"
   uplevel \#0 load [file join $dir libibdm.so.1.2]
	package provide ibdm 1.2
}

package ifneeded ibdm 1.2 [list ibdmLoad1.2 $dir]