From 16bd34513ec08e52b1c6f45d6675216f2abb4527 Mon Sep 17 00:00:00 2001 From: rcourtman Date: Mon, 17 Nov 2025 22:01:11 +0000 Subject: [PATCH] Fix pending control-plane helpers --- scripts/install-sensor-proxy.sh | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/scripts/install-sensor-proxy.sh b/scripts/install-sensor-proxy.sh index 8c68353..85edb40 100755 --- a/scripts/install-sensor-proxy.sh +++ b/scripts/install-sensor-proxy.sh @@ -107,6 +107,7 @@ determine_allowlist_mode() { print_warn "pulse-sensor-proxy ${INSTALLED_PROXY_VERSION} does not support allowed_nodes_file; using inline allow list updates" } + configure_local_authorized_key() { local auth_line=$1 local auth_keys_file="/root/.ssh/authorized_keys" @@ -2962,22 +2963,3 @@ else fi exit 0 -record_pending_control_plane() { - local mode="$1" - if [[ -z "$PULSE_SERVER" ]]; then - return - fi - - cat > "$PENDING_CONTROL_PLANE_FILE" </dev/null || true -} - -clear_pending_control_plane() { - rm -f "$PENDING_CONTROL_PLANE_FILE" 2>/dev/null || true -}