From 2288e6c256479896f6905ca619fa101362d4d000 Mon Sep 17 00:00:00 2001 From: Craig Comstock Date: Thu, 15 Jan 2026 12:44:03 -0600 Subject: [PATCH] Fixed use of cf-remote in build host setup using pip cf-remote is installed in /usr/local/bin so that path needs to be added to $PATH Ticket: none Changelog: none --- ci/setup-cfengine-build-host.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/setup-cfengine-build-host.sh b/ci/setup-cfengine-build-host.sh index 44334fd62..afbce6495 100755 --- a/ci/setup-cfengine-build-host.sh +++ b/ci/setup-cfengine-build-host.sh @@ -190,6 +190,7 @@ if ! /var/cfengine/bin/cf-agent -V; then elif software python3-pip; then pip install cf-remote fi + export PATH=/usr/local/bin:$PATH # add /usr/local/bin for pip/pipx installed cf-remote if command -v cf-remote >/dev/null; then cf-remote --log-level info --version master install --clients localhost || true fi