This file is indexed.

/etc/init/apport-reconfig.conf is in lxc-android-config 0.230+16.04.20160328-0ubuntu1.

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
# apport - automatic crash report generation
#
# While this job is active, core dumps will captured by apport and
# used to generate automatic crash reports.

description	"automatic crash report generation"

start on file FILE=/var/lib/apport/autoreport EVENT=create
stop on file FILE=/var/lib/apport/autoreport EVENT=delete

pre-start script
    # don't start in containers
    /bin/running-in-container && exit 0

    # Only enable crash file generation if autoreport is enabled (LP: #1494442)
    [ -e /var/lib/apport/autoreport ] || exit 0

    echo "|/usr/share/apport/apport %p %s %c %P" > /proc/sys/kernel/core_pattern
    echo 2 > /proc/sys/fs/suid_dumpable
end script

post-stop script
    # don't stop in containers
    /bin/running-in-container && exit 0

    if [ "`dd if=/proc/sys/kernel/core_pattern count=1 bs=1 2>/dev/null`" != "|" ]
    then
	exit 1
    else
	echo 0 > /proc/sys/fs/suid_dumpable
	echo "core" > /proc/sys/kernel/core_pattern
    fi
end script