~michael-sheldon/ubuntu-touch-session/fix-1659388

« back to all changes in this revision

Viewing changes to upstart-session/pulseaudio-trust-stored.conf

  • Committer: CI Train Bot
  • Author(s): Łukasz 'sil2100' Zemczak
  • Date: 2016-04-07 11:59:03 UTC
  • mfrom: (280.1.1 ubuntu-touch-session)
  • Revision ID: ci-train-bot@canonical.com-20160407115903-yilpjrfhhb9xyqe3
Add an etc profile.d to add the /custom/usr/share directory to enable using customized notification sounds by the push client. Fixes: #1413818

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
description "Pulseaudio Trust Store Daemon"
 
2
 
 
3
start on started pulseaudio
 
4
stop on stopped pulseaudio
 
5
 
 
6
respawn
 
7
 
 
8
script
 
9
    # Extra security until trust-stored handles DBus name owner changes
 
10
    # for the service
 
11
    sleep 2
 
12
 
 
13
    exec /usr/bin/trust-stored-skeleton \
 
14
        --remote-agent DBusRemoteAgent --bus=session \
 
15
        --local-agent MirAgent \
 
16
        --trusted-mir-socket=/var/run/user/$(id -u)/mir_socket_trusted \
 
17
        --for-service PulseAudio \
 
18
        --with-text-domain PulseAudio \
 
19
        --store-bus session \
 
20
        --disable-whitelisting=yes
 
21
end script