This file is indexed.

/etc/init/apport-noui.conf is in apport-noui 2.14.1-0ubuntu3.

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
description "Process error reports when automatic reporting is enabled"
author "Evan Dandrea <evan.dandrea@canonical.com>"

start on (
    file FILE=/var/crash/*.crash EVENT=create
)

env MATCH=NULL

script
    [ -e /var/lib/apport/autoreport ] || exit 0
    [ "$MATCH" = NULL ] && exit 0

    UID="$(stat -c '%u' "$MATCH")"
    if [ -n "$UID" ] && [ $UID -ge 500 ]; then
        exec sudo -u \#$UID /usr/share/apport/whoopsie-upload-all
        exit 0
    fi
    exec /usr/share/apport/whoopsie-upload-all
end script