Skip to content
Snippets Groups Projects
run.sh 222 B
Newer Older
Elliott Shugerman's avatar
Elliott Shugerman committed
#! /bin/sh

set -e

if [ "${S3_S3V4}" = "yes" ]; then
    aws configure set default.s3.signature_version s3v4
fi

if [ "${SCHEDULE}" = "**None**" ]; then
  sh backup.sh
else
  exec go-cron "$SCHEDULE" /bin/sh backup.sh
fi