From fe41b05648235b07a65962bc425e2fb258bd38bc Mon Sep 17 00:00:00 2001 From: Jose Dapena Paz Date: Wed, 30 Mar 2022 10:04:42 +0200 Subject: [PATCH] wam: improve shutdown procedure It was observed that restarting agl-session would crash and/or hang WAM. So this change binds WAM to agl-compositor in systemd service file. This means stopping compositor will stop WAM. It also fixes another problem on restart, as the WAM launcher processes from previous execution would still be alive. So it forces killing all the WAM processes for the user on shutdown. Bug-AGL: SPEC-4293 Change-Id: I5131cdd56c292c66d0f2d5ea88cf772ef9b4bd56 Signed-off-by: Jose Dapena Paz --- recipes-wam/wam/files/WebAppMgr.service | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes-wam/wam/files/WebAppMgr.service b/recipes-wam/wam/files/WebAppMgr.service index a2e58abef..082a488cc 100644 --- a/recipes-wam/wam/files/WebAppMgr.service +++ b/recipes-wam/wam/files/WebAppMgr.service @@ -15,6 +15,7 @@ Description="WebAppMgr is responsible for running web apps and manage their life After=agl-compositor.service Requires=agl-compositor.service Before=agl-session.target +BindTo=agl-compositor.service [Service] Type=simple @@ -22,6 +23,7 @@ UMask=0077 OOMScoreAdjust=-1000 EnvironmentFile=-/etc/default/WebAppMgr.env ExecStart=/usr/bin/WebAppMgr --use-gl=egl --enable-features=UseOzonePlatform --ozone-platform=wayland --no-sandbox --use-viz-fmp-with-timeout=0 --in-process-gpu --remote-debugging-port=9998 --user-data-dir="/home/%u/wamdata" --webos-wam --agl-shell-appid=homescreen --disable-gpu-vsync +ExecStop=pkill -U %U WebAppMgr Restart=on-failure RestartSec=50 -- 2.16.6