This file is indexed.

/usr/share/upstart/sessions/ubuntu-location-service-trust-stored.conf is in ubuntu-location-service-bin 3.0.0+16.04.20160405-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
description "Location Services Trust Store Daemon"

# try to start this on session startup or once ubuntu-location-service finished
# starting; if dbus is available and location-service isn't or vice-versa,
# startup will fail but the next event firing will trigger another start
start on (started dbus and xsession SESSION=ubuntu-touch) or \
    dbus BUS=system SIGNAL=NameOwnerChanged INTERFACE=org.freedesktop.DBus OBJPATH=/org/freedesktop/DBus ARG0=com.ubuntu.location.Service ARG2!=""

stop on desktop-end or \
    dbus BUS=system SIGNAL=NameOwnerChanged INTERFACE=org.freedesktop.DBus OBJPATH=/org/freedesktop/DBus ARG0=com.ubuntu.location.Service ARG2=""

respawn

script
    # XXX LP #1369692
    sleep 2

    exec /usr/bin/trust-stored-skeleton \
        --remote-agent DBusRemoteAgent --bus=system \
        --local-agent MirAgent \
        --trusted-mir-socket=/var/run/user/$(id -u)/mir_socket_trusted \
        --for-service UbuntuLocationService \
        --with-text-domain ubuntu-location-service \
        --store-bus session
end script