Address PR comments.

This commit is contained in:
Ivaylo Novakov 2021-01-20 15:27:12 +01:00
parent 6dbb07abcb
commit 6a59245264
No known key found for this signature in database
GPG Key ID: 06B9354AB08BE9C6
2 changed files with 16 additions and 4 deletions

View File

@ -1,11 +1,16 @@
#!/bin/bash
# Take the current datetime:
DT=`date +%Y-%m-%d`
# Get current working directory (pwd doesn't cut it)
cwd=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
# Set the environment:
set -o allexport
source ../.env
source $cwd/../.env
set +o allexport
# Check for AWS credentials:
if [[ $AWS_ACCESS_KEY_ID == "" || $AWS_SECRET_ACCESS_KEY == "" ]]; then
echo "Missing AWS credentials!"
exit 1
fi
# Take the current datetime:
DT=`date +%Y-%m-%d`
# Create the backup:

View File

@ -6,10 +6,17 @@ if [[ $BACKUP == "" ]]; then
exit 1
fi
# Get current working directory (pwd doesn't cut it)
cwd=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
# Set the environment:
set -o allexport
source ../.env
source $cwd/../.env
set +o allexport
# Check for AWS credentials:
if [[ $AWS_ACCESS_KEY_ID == "" || $AWS_SECRET_ACCESS_KEY == "" ]]; then
echo "Missing AWS credentials!"
exit 1
fi
# Restore the backup:
docker exec cockroach \
cockroach sql \