This file is indexed.

/etc/init/autofs.conf is in autofs 5.0.7-3ubuntu3.

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
description "Automounter"
author      "Chuck Short <zulcss@ubuntu.com>"

start on runlevel [2345]
stop on runlevel [!2345]

expect fork
respawn

pre-start script
    modprobe -q autofs4 || true
end script

script
    if [ -f /etc/default/autofs ] ; then
        . /etc/default/autofs
    fi
    exec /usr/sbin/automount $OPTIONS
end script