This file is indexed.

/usr/share/upstart/sessions/click-scope-departments-db.conf is in unity-scope-click-departmentsdb 0.1.1+16.04.20160330-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
description "Default Click Departments Database"
author "Pawel Stolowski <pawel.stolowski@canonical.com>"

start on starting unity8

script
    DB_FILE=/usr/share/unity/scopes/clickapps//departments.db
    if [ -f $HOME/.cache/click-departments.db ]
    then
        /usr/share/unity/scopes/clickapps//update_schema.sh $HOME/.cache/click-departments.db
    else
        cp $DB_FILE $HOME/.cache/click-departments.db
    fi
end script