Ubuntu Pastebin

Paste from ogra at Wed, 29 Apr 2015 21:27:42 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 \
     file FILE=/run/location-service.pid EVENT=create
stop on desktop-end or file FILE=/run/location-service.pid EVENT=delete

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
Download as text