summaryrefslogtreecommitdiffstats
path: root/satellit_installer/static_files/system/etc/cron.weekly/backup-satconfig.sh
blob: ae9753501acf3b231edbe4738a5da858810d611b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

DIR="/root/backup/"
BACKUP_FILE=$(/opt/taskmanager/scripts/system-backup | tail -n 1 | cut -d' ' -f 2)

mkdir -p "$DIR"
cd "$DIR" || exit 1

mv $BACKUP_FILE $DIR

# remove backups older than 180 days
find $DIR/*.tgz -type f -mtime +180 -exec rm -f {} \;