This file is indexed.

/etc/init/module-init-tools.conf is in module-init-tools 3.16-1ubuntu2.

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
18
# module-init-tools - load modules from /etc/modules
#
# This task loads the kernel modules specified in the /etc/modules file

description	"load modules from /etc/modules"

start on (startup
	  and started udev)

task
script
    grep '^[^#]' /etc/modules |
	while read module args
	do
	    [ "$module" ] || continue
	    modprobe $module $args || :
	done
end script