Netdata MacOS can't get to install via Kandji

Suggested template:

Problem/Question

Hi, I have an issue where the kickstart will not install when being pushed out by Kandji, I get a failure each time either because of CMake or because the script the fails.

I am unable to resolve this issue and was wondering if there was any assistance.

Relevant docs you followed/actions you took to solve the issue

#!/bin/zsh

set -euo pipefail

LOG_TAG=“Netdata Kickstart”

log(){ echo “$(date ‘+%Y-%m-%d %H:%M:%S %Z’) [$LOG_TAG] $*”; }

export HOME=“/var/root”

export TMPDIR=“/tmp”

CLAIM_TOKEN=“”

CLAIM_ROOMS=“”

CLAIM_URL=“https://app.netdata.cloud

# Skip if already installed and claimed

if command -v netdata >/dev/null 2>&1 && [[ -d “/usr/local/netdata/cloud.d” ]]; then

log “Netdata already installed and claimed — nothing to do.”

exit 0

fi

log “Downloading Netdata kickstart…”

curl -fsSL https://get.netdata.cloud/kickstart.sh -o /tmp/netdata-kickstart.sh

log “Running Netdata kickstart with nightly channel and claim…”

sh /tmp/netdata-kickstart.sh \

–nightly-channel \

–claim-token “$CLAIM_TOKEN” \

–claim-rooms “$CLAIM_ROOMS” \

–claim-url “$CLAIM_URL”

log “:white_check_mark: Netdata kickstart completed.”

exit 0

Hey, could you please provide the installation logs?