diff --git a/scripts/cluster/install-certificate-sync.sh b/scripts/cluster/install-certificate-sync.sh index 3d959dd..94616a9 100755 --- a/scripts/cluster/install-certificate-sync.sh +++ b/scripts/cluster/install-certificate-sync.sh @@ -6,6 +6,13 @@ script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) source "$script_dir/common.sh" load_cluster_env +hongkong_host_key=$(cluster_ssh "$CLUSTER_HONGKONG_HOST" \ + "cut -d ' ' -f 1,2 /etc/ssh/ssh_host_ed25519_key.pub") +[[ $hongkong_host_key =~ ^ssh-ed25519\ [A-Za-z0-9+/]+={0,2}$ ]] || { + echo 'invalid Hong Kong SSH host key' >&2 + exit 1 +} + public_key=$(cluster_ssh "$CLUSTER_NINGBO_HOST" 'bash -s' <<'REMOTE' set -euo pipefail install -d -m 0700 /root/.ssh @@ -28,6 +35,20 @@ chmod 0600 /root/.ssh/authorized_keys grep -Fqx "$public_key" /root/.ssh/authorized_keys || printf '%s\n' "$public_key" >>/root/.ssh/authorized_keys REMOTE +cluster_ssh "$CLUSTER_NINGBO_HOST" bash -s -- "$hongkong_host_key" <<'REMOTE' +set -euo pipefail +hongkong_host_key=$1 +install -d -m 0700 /root/.ssh +known_hosts=/root/.ssh/known_hosts +temporary=$(mktemp /root/.ssh/known_hosts.XXXXXX) +if [[ -f $known_hosts ]]; then + grep -Ev '^10\.77\.0\.2([ ,]|$)' "$known_hosts" >"$temporary" || true +fi +printf '10.77.0.2 %s\n' "$hongkong_host_key" >>"$temporary" +chmod 0600 "$temporary" +mv "$temporary" "$known_hosts" +REMOTE + cluster_scp "$script_dir/sync-nginx-certificate.sh" \ "$CLUSTER_NINGBO_HOST:/usr/local/sbin/easyai-sync-nginx-certificate" cluster_ssh "$CLUSTER_NINGBO_HOST" 'bash -s' <<'REMOTE'