Setup Script - Fix Variable

This commit is contained in:
Mike Reeves
2018-05-18 14:35:54 -04:00
parent 0c1e2c65c6
commit d37bee297b

View File

@@ -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
}