From 0820d0933bcffcd3084fc92b989c115d601819a4 Mon Sep 17 00:00:00 2001 From: fwazb Date: Sat, 25 Jul 2026 11:08:14 -0700 Subject: [PATCH] Invoke teleo-kb through bash on noexec tmpfs --- ops/gcp_leoclean_nosend_prompt_ingress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ops/gcp_leoclean_nosend_prompt_ingress.py b/ops/gcp_leoclean_nosend_prompt_ingress.py index b6450ca..724fcfa 100644 --- a/ops/gcp_leoclean_nosend_prompt_ingress.py +++ b/ops/gcp_leoclean_nosend_prompt_ingress.py @@ -151,7 +151,7 @@ def _status_environment(profile: Path) -> dict[str, str]: def _database_status(profile: Path) -> dict[str, Any]: wrapper = profile / "bin" / "teleo-kb" completed = subprocess.run( - [str(wrapper), "status", "--format", "json"], + ["/bin/bash", str(wrapper), "status", "--format", "json"], cwd=profile, env=_status_environment(profile), check=False,