From 451358a57c4bd8fd93bab8121cfb5698d5471568 Mon Sep 17 00:00:00 2001 From: Spyros Trigazis Date: Thu, 25 Jul 2019 12:02:56 +0200 Subject: [PATCH] heat-agent: Do not use absolute path In a recent version of fedora base and python/pip that comes with it, pip installed pkgs put their binaries in /usr/local/bin instead of /usr/bin. Since the lanuch script is a bash script we do not have to use the absolute path. Change-Id: I9f31d047fe538114136d2199b447e3fe8248aa8c Signed-off-by: Spyros Trigazis --- dockerfiles/heat-container-agent/launch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/heat-container-agent/launch b/dockerfiles/heat-container-agent/launch index a910694860..bdba74cda3 100755 --- a/dockerfiles/heat-container-agent/launch +++ b/dockerfiles/heat-container-agent/launch @@ -2,4 +2,4 @@ /opt/heat-container-agent/configure_container_agent.sh -exec /usr/bin/os-collect-config --debug +exec os-collect-config --debug