diff options
Diffstat (limited to 'src/main/scripts/dynamicPayloadArchive.sh')
-rw-r--r-- | src/main/scripts/dynamicPayloadArchive.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/scripts/dynamicPayloadArchive.sh b/src/main/scripts/dynamicPayloadArchive.sh index 89cf990..abac76e 100644 --- a/src/main/scripts/dynamicPayloadArchive.sh +++ b/src/main/scripts/dynamicPayloadArchive.sh @@ -1,4 +1,4 @@ -#!/bin/ksh +#!/bin/sh # ### # ============LICENSE_START======================================================= @@ -9,9 +9,9 @@ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at -# +# # http://www.apache.org/licenses/LICENSE-2.0 -# +# # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -21,7 +21,7 @@ ### # -# The script is called to tar and gzip the files under /opt/app/aai-graphadmin/data/scriptdata/addmanualdata/tenant_isolation/payload +# The script is called to tar and gzip the files under /opt/app/aai-graphadmin/data/scriptdata/addmanualdata/tenant_isolation/payload # which contains the payload files created by the dynamicPayloadGenerator.sh tool. # /opt/app/aai-graphadmin/data/scriptdata/addmanualdata/tenant_isolation is mounted to the docker container # @@ -64,7 +64,7 @@ then fi cd ${ARCHIVE_DIRECTORY} -gzip ${ARCHIVE_DIRECTORY}/dynamicPayloadArchive_${TS}.tar +gzip ${ARCHIVE_DIRECTORY}/dynamicPayloadArchive_${TS}.tar if [ $? -ne 0 ] then |