blob: 07a7d052f3b8efa68ef7262a77bd9b1cc16f7696 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
description "Indicator Application Service"
start on indicator-services-start
stop on desktop-end or indicator-services-end
emits appindicators-start appindicators-end
respawn
respawn limit 2 10
pre-start script
# NOTE: Limiting only to Unity 7 right now as it's still using
# dbusmenu. That can be lifted after it is ported to GMenu
if [ "x$DESKTOP_SESSION" = "xubuntu-touch" ] ; then
stop; exit 0
fi
end script
exec @pkglibexecdir@/indicator-application-service
pre-stop exec initctl emit appindicators-end
|