From e709e63932789427d788686383d97e5efd09d951 Mon Sep 17 00:00:00 2001 From: Mike Reeves Date: Fri, 18 May 2018 14:41:05 -0400 Subject: [PATCH] Setup Script - Fix Variable --- so-setup-network.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/so-setup-network.sh b/so-setup-network.sh index 5664b8f0a..c5108e451 100644 --- a/so-setup-network.sh +++ b/so-setup-network.sh @@ -446,16 +446,16 @@ set_node_type() { # Determine the node type based on whiplash choice if [ $INSTALLTYPE == 'STORAGENODE' ]; then - $NODETYPE="storage" + NODETYPE="storage" fi if [ $INSTALLTYPE == 'PARSINGNODE' ]; then - $NODETYPE='parser' + NODETYPE='parser' fi if [ $INSTALLTYPE == 'HOTNODE' ]; then - $NODETYPE="hot" + NODETYPE="hot" fi if [ $INSTALLTYPE == 'WARMNODE' ]; then - $NODETYPE="warm" + NODETYPE="warm" fi }