From 03923e80c4b3398ecf7f98579a0d7a7c14bd7ccd Mon Sep 17 00:00:00 2001 From: Ryan Savino Date: Thu, 10 Apr 2025 18:13:57 -0500 Subject: [PATCH] agent: provide absolute path for shell used to host the debug console The agent loads a shell to host the debug-console vsock service. symlinks in ubuntu 22.04 rootfs not resolving. Fixes: #10959 Signed-Off-By: Ryan Savino --- src/agent/src/console.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/agent/src/console.rs b/src/agent/src/console.rs index 49a9226e8b..e7fafafabc 100644 --- a/src/agent/src/console.rs +++ b/src/agent/src/console.rs @@ -34,6 +34,7 @@ lazy_static! { let mut v = Vec::new(); if !cfg!(test) { + v.push("/usr/bin/bash".to_string()); v.push("/bin/bash".to_string()); v.push("/bin/sh".to_string()); }