From 21712111e740d23828c7b6030c3cdcfb5fed479e Mon Sep 17 00:00:00 2001 From: rcourtman Date: Sun, 19 Oct 2025 09:08:00 +0000 Subject: [PATCH] fix: enable variable expansion in cluster node SSH key heredoc Changed heredoc delimiter from <<'EOF' to </dev/null 2>&1 && comm if [[ $REMOTE_REPLY =~ ^[Yy]$ ]]; then for NODE in "${OTHER_NODES_LIST[@]}"; do echo "Configuring temperature monitoring on $NODE..." - if ssh -o BatchMode=yes -o StrictHostKeyChecking=no -o ConnectTimeout=5 -o LogLevel=ERROR root@"$NODE" "bash -s" <<'EOF' + if ssh -o BatchMode=yes -o StrictHostKeyChecking=no -o ConnectTimeout=5 -o LogLevel=ERROR root@"$NODE" "bash -s" <