From f01de1309f6f0d2f629e881db64d527cf01358be Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Tue, 3 Dec 2024 08:56:35 +0100 Subject: [PATCH] Update rebuild.sh --- demo/rebuild.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/demo/rebuild.sh b/demo/rebuild.sh index ce92944e..a1be3cc0 100644 --- a/demo/rebuild.sh +++ b/demo/rebuild.sh @@ -1,9 +1,6 @@ #!/bin/bash - -DROPLET_ID="442891520" -DROPLET_IP="45.55.60.4" DROPLET_IMAGE="ubuntu-24-04-x64" -SSH_KEY_PATH="~/.ssh/id_rsa" +SSH_KEY="~/.ssh/id_rsa" PANEL_HOSTNAME="demo.openpanel.org" DEMO_SCRIPT="https://raw.githubusercontent.com/stefanpejcic/OpenPanel/refs/heads/main/demo/2087/setup_demo.sh" @@ -28,7 +25,7 @@ sleep 300 # Step 2: SSH to the droplet and run commands echo "Connecting to the droplet via SSH to set up the panel..." -ssh -o StrictHostKeyChecking=no -i "$SSH_KEY_PATH" root@$DROPLET_IP <