This file is indexed.

/usr/share/doc/perlbal/examples/echoservice.conf is in perlbal 1.80-3.

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
#
# This is an example configuration using the EchoService plugin.
#
# See doc/config-guide.txt for descriptions of each command (line)
# and configuration syntax.
#

LOAD EchoService

CREATE SERVICE echo
  SET listen        = 0.0.0.0:7123
  SET role          = echo
ENABLE echo

CREATE SERVICE echo_delayed
  SET listen        = 0.0.0.0:7124
  SET role          = echo
  SET echo_delay    = 3
ENABLE echo_delayed

# always good to keep an internal management port open:
CREATE SERVICE mgmt
  SET role   = management
  SET listen = 127.0.0.1:16000
ENABLE mgmt