diff options
Diffstat (limited to 'deploy_vm2.sh')
-rwxr-xr-x | deploy_vm2.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/deploy_vm2.sh b/deploy_vm2.sh index d890528..01631e3 100755 --- a/deploy_vm2.sh +++ b/deploy_vm2.sh @@ -10,8 +10,8 @@ fi export RESOURCES_LOGS="/opt/aai/logroot/AAI-RESOURCES"; export TRAVERSAL_LOGS="/opt/aai/logroot/AAI-TRAVERSAL"; export SEARCH_LOGS="/opt/aai/logroot/AAI-SEARCH"; -export DATA-ROUTER_LOGS="/opt/aai/logroot/AAI-DATA-ROUTER"; -export MODEL-LOADER_LOGS="/opt/aai/logroot/AAI-MODEL-LOADER"; +export DATA_ROUTER_LOGS="/opt/aai/logroot/AAI-DATA-ROUTER"; +export MODEL_LOADER_LOGS="/opt/aai/logroot/AAI-MODEL-LOADER"; if [ ! -d "$RESOURCES_LOGS" ]; then @@ -31,16 +31,16 @@ then mkdir -p $SEARCH_LOGS; fi; -if [ ! -d "$DATA-ROUTER_LOGS" ]; +if [ ! -d "$DATA_ROUTER_LOGS" ]; then - echo "Warning: Unable to find the volume directory $DATA-ROUTER_LOGS so creating it as regular directory"; - mkdir -p $DATA-ROUTER_LOGS; + echo "Warning: Unable to find the volume directory $DATA_ROUTER_LOGS so creating it as regular directory"; + mkdir -p $DATA_ROUTER_LOGS; fi; -if [ ! -d "$MODEL-LOADER_LOGS" ]; +if [ ! -d "$MODEL_LOADER_LOGS" ]; then - echo "Warning: Unable to find the volume directory $MODEL-LOADER_LOGS so creating it as regular directory"; - mkdir -p $MODEL-LOADER_LOGS; + echo "Warning: Unable to find the volume directory $MODEL_LOADER_LOGS so creating it as regular directory"; + mkdir -p $MODEL_LOADER_LOGS; fi; export MTU=${MTU:-1500}; |