From fc4afe67670fdb7b7f446444f2436691e50750d1 Mon Sep 17 00:00:00 2001 From: Mike Reeves Date: Tue, 19 May 2020 09:58:16 -0400 Subject: [PATCH] Fix Curl statement --- salt/hive/thehive/scripts/hive_init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/hive/thehive/scripts/hive_init b/salt/hive/thehive/scripts/hive_init index 03b43e74f..9d558a3c6 100755 --- a/salt/hive/thehive/scripts/hive_init +++ b/salt/hive/thehive/scripts/hive_init @@ -16,7 +16,7 @@ hive_init(){ COUNT=0 HIVE_CONNECTED="no" while [[ "$COUNT" -le 240 ]]; do - curl --output /dev/null --silent --head --fail -k "https://$HIVE_IP:/thehive" + curl --output /dev/null --silent --head --fail -k "https://$HIVE_IP/thehive" if [ $? -eq 0 ]; then HIVE_CONNECTED="yes" echo "connected!"