Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ci/cfengine-build-host-setup.cf
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@ bundle agent cfengine_build_host_setup
(redhat_9).(yum_dnf_conf_ok)::
"perl-Sys-Hostname" comment => "Needed by __04_examples_outputs_check_outputs_cf";

(redhat_10).(yum_dnf_conf_ok)::
"patch";

suse|opensuse|sles::
"binutils";
"gdb";
Expand Down
6 changes: 6 additions & 0 deletions ci/setup-cfengine-build-host.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
#!/usr/bin/env bash
shopt -s expand_aliases

ready_flag=/etc/cfengine-buildhost-ready.flag
if [ -f "$ready_flag" ]; then
echo "Found $ready_flag file so skipping build host setup script and policy."
exit 0
fi

# Use the newest CFEngine version we can
CFE_VERSION=3.26.0
if [ -f /etc/centos-release ]; then
Expand Down