mirror of
https://github.com/ditkrg/db-backup-s3.git
synced 2026-01-22 22:06:45 +00:00
14 lines
207 B
Bash
14 lines
207 B
Bash
#! /bin/sh
|
|
|
|
set -eu
|
|
|
|
if [ "$S3_S3V4" = "yes" ]; then
|
|
aws configure set default.s3.signature_version s3v4
|
|
fi
|
|
|
|
if [ -z "$SCHEDULE" ]; then
|
|
sh backup.sh
|
|
else
|
|
exec go-cron "$SCHEDULE" /bin/sh backup.sh
|
|
fi
|