Closed abronin closed 1 year ago
AWS_CLI_S3_CP_OPTS is just not in use when you do a backup.
AWS_CLI_S3_CP_OPTS
Here is example of aws s3 cp command in backup restore (entrypoint file, line 118):
aws s3 cp
entrypoint
aws ${AWS_CLI_OPTS} ${AWS_ENDPOINT_OPT} s3 cp ${AWS_CLI_S3_CP_OPTS} "${DB_RESTORE_TARGET}" $TMPRESTORE
You can see ${AWS_CLI_S3_CP_OPTS} here.
${AWS_CLI_S3_CP_OPTS}
Here is example of aws s3 cp command in backup (functions.sh file, line 220):
functions.sh
aws ${AWS_CLI_OPTS} ${AWS_ENDPOINT_OPT} s3 cp ${TMPDIR}/${SOURCE} "${DB_DUMP_TARGET}/${TARGET}"
(no ${AWS_CLI_S3_CP_OPTS} here).
AWS_CLI_S3_CP_OPTS
is just not in use when you do a backup.Here is example of
aws s3 cp
command in backup restore (entrypoint
file, line 118):You can see
${AWS_CLI_S3_CP_OPTS}
here.Here is example of
aws s3 cp
command in backup (functions.sh
file, line 220):(no
${AWS_CLI_S3_CP_OPTS}
here).