From 523fd4d21655361439ffe6f1f57417ceec6f1290 Mon Sep 17 00:00:00 2001 From: Erfan Abdi Date: Tue, 31 Aug 2021 14:24:49 +0430 Subject: [PATCH] Use kill for sensors --- tools/actions/container_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/actions/container_manager.py b/tools/actions/container_manager.py index 47a2856..f4ad128 100644 --- a/tools/actions/container_manager.py +++ b/tools/actions/container_manager.py @@ -198,7 +198,7 @@ def stop(args): command = ["pidof", "waydroid-sensord"] pid = tools.helpers.run.root(args, command, check=False, output_return=True) if pid: - command = ["killall", pid] + command = ["kill", "-9", pid] tools.helpers.run.root(args, command, check=False) else: -- 2.47.3