aboutsummaryrefslogtreecommitdiffstats
path: root/profiles/backup-archive
blob: f9e0be79f6f842582973f30a2f9fe842269be6f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

##################################################
# Keep a montly copy on the first day of the month
# This should run after the backup-sync profile
##################################################

DATE=$(date -u "+%Y%m%d%H%M%S")
SRC="$(hostname).apkovl.tar.gz${SUFFIX}"
DEST="$(hostname).${DATE}.tar.gz${SUFFIX}"

if [ "$(date +%d)" = "01" ]; then
	echo "Archiving montly backup"
	ssh "$RBU_SERVER" install -Dm644 "$FQDN"/week/"$SRC" "$FQDN"/month/"$DEST"
fi