This file is indexed.

/etc/init/portmap.conf is in rpcbind 0.2.0-7ubuntu1.

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
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# rpcbind - RPC portmapper replacement

# rpcbind is a server that converts RPC (Remote Procedure Call) program
# numbers into DARPA protocol port numbers. It must be running in order
# to make RPC calls.

# Note that this is called portmap rather than rpcbind because other
# packages rely on the portmap name.

description	"RPC portmapper replacement"
author		"Colin Watson <cjwatson@ubuntu.com>"

start on start-rpcbind
stop on unmounted-remote-filesystems

# ON_BOOT is set on start-rpcbind in rpcbind-boot.conf
# Used by statd which must not start on started portmap during boot
export ON_BOOT
env ON_BOOT=

expect fork
respawn

pre-start exec mkdir -p /run/rpcbind

script
	OPTIONS="-w"
	if [ -f /etc/default/rpcbind ]; then
		. /etc/default/rpcbind
	elif [ -f /etc/rpcbind.conf ]; then
		. /etc/rpcbind.conf
	fi
	exec rpcbind $OPTIONS
end script