Browse Source

Remove colon in time portion of archive filename

pull/42/head
Teoh Han Hui 8 years ago
committed by GitHub
parent
commit
bebaa8ecd8
  1. 2
      postgres-backup-s3/backup.sh

2
postgres-backup-s3/backup.sh

@ -57,6 +57,6 @@ pg_dump $POSTGRES_HOST_OPTS $POSTGRES_DATABASE | gzip > dump.sql.gz
echo "Uploading dump to $S3_BUCKET"
cat dump.sql.gz | aws s3 cp - s3://$S3_BUCKET/$S3_PREFIX/$(date +"%Y-%m-%dT%H:%M:%SZ").sql.gz || exit 2
cat dump.sql.gz | aws s3 cp - s3://$S3_BUCKET/$S3_PREFIX/$(date +"%Y-%m-%dT%H%M%SZ").sql.gz || exit 2
echo "SQL backup uploaded successfully"
|||||||
100:0
Loading…
Cancel
Save