This file is indexed.

/usr/share/nagios-plugins/dpkg/functions is in nagios-plugins-basic 1.4.15-5ubuntu3.

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
15
# functions for use by nagios plugins maintainer scripts

npconfdir=/etc/nagios-plugins/config

# we now register all n-p config files via ucf.
register_cfgs(){
		# do this in a subshell so we don't screw up cwd
		( 
			cd $templdir
			for f in *cfg; do
				dest=${npconfdir}/$f
				ucf $f $dest
			done 
		);
}