writefreely/aws-s3-backup/files/writefreely-s3-backup.sh
author Luke Hoersten <luke@hoersten.org>
Sun, 04 Feb 2024 20:27:19 -0600
changeset 227 2e0366f2dcbe
parent 159 05d0cf32e077
permissions -rw-r--r--
Tons of updates to fix migration to new server.

#!/bin/bash

BUCKET=$1
BACKUP_DIR=$2
BACKUP_TAR="/tmp/$BUCKET.tgz"

tar -zc -f $BACKUP_TAR $BACKUP_DIR
aws s3 mb "s3://$BUCKET/"
aws s3api put-bucket-versioning --bucket "$BUCKET" --versioning-configuration Status=Enabled
aws s3api put-bucket-lifecycle-configuration --bucket "$BUCKET" --lifecycle-configuration "file:///usr/local/share/writefreely-s3-backup-lifecycle.json"
aws s3 cp $BACKUP_TAR "s3://$BUCKET/"

rm $BACKUP_TAR