summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2023-06-15 18:08:14 -0400
committerScott Murray <scott.murray@konsulko.com>2023-06-15 18:08:14 -0400
commitd8047e61af3ebe2fe0d98ea5599409bd19107ccb (patch)
treeacb150997c2cc7b339c76a870fcf1fa2c078b2ee
parent2507e4a69862808a6331b0e4c665b694f49a49b9 (diff)
Add explicit applaunchd systemd dependenciespike_15.91.1pike/15.91.115.91.1
While the change to ensure polkit starts before applaunchd in meta-app-framework should resolve the observed failures, it is also the case that the applications here that call into the applaunchd API did not have dependencies on it in their systemd units, so also fix that to improve overall robustness. Bug-AGL: SPEC-4840 Change-Id: I884b7b326309a0dbdc374a93929aa33f421c680c Signed-off-by: Scott Murray <scott.murray@konsulko.com>
-rw-r--r--recipes-demo/flutter-homescreen/files/flutter-homescreen.service4
-rw-r--r--recipes-demo/homescreen/files/homescreen.service4
-rw-r--r--recipes-demo/launcher/files/launcher.service4
3 files changed, 6 insertions, 6 deletions
diff --git a/recipes-demo/flutter-homescreen/files/flutter-homescreen.service b/recipes-demo/flutter-homescreen/files/flutter-homescreen.service
index 6a1eabea..3024fced 100644
--- a/recipes-demo/flutter-homescreen/files/flutter-homescreen.service
+++ b/recipes-demo/flutter-homescreen/files/flutter-homescreen.service
@@ -1,6 +1,6 @@
[Unit]
-Requires=agl-compositor.service
-After=agl-compositor.service
+Requires=agl-compositor.service applaunchd.service
+After=agl-compositor.service applaunchd.service
[Service]
User=agl-driver
diff --git a/recipes-demo/homescreen/files/homescreen.service b/recipes-demo/homescreen/files/homescreen.service
index d35f52ad..d7b85f6f 100644
--- a/recipes-demo/homescreen/files/homescreen.service
+++ b/recipes-demo/homescreen/files/homescreen.service
@@ -1,6 +1,6 @@
[Unit]
-Requires=agl-compositor.service
-After=agl-compositor.service
+Requires=agl-compositor.service applaunchd.service
+After=agl-compositor.service applaunchd.service
Before=graphical.target
[Service]
diff --git a/recipes-demo/launcher/files/launcher.service b/recipes-demo/launcher/files/launcher.service
index 882d13a1..00dfd9ad 100644
--- a/recipes-demo/launcher/files/launcher.service
+++ b/recipes-demo/launcher/files/launcher.service
@@ -1,6 +1,6 @@
[Unit]
-Requires=homescreen.service
-After=homescreen.service
+Requires=homescreen.service applaunchd.service
+After=homescreen.service applaunchd.service
[Service]
Type=simple