6 lines
331 B
Bash
Executable file
6 lines
331 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Backup script that uses rsync, taken from https://wiki.archlinux.org/index.php/Rsync#As_a_backup_utility
|
|
# This script should be run daily with cron or a systemd timer.
|
|
|
|
rsync -a --delete --quiet --exclude-from=/home/"$SETUP_COCKPIT_USER"/setup-cockpit/rsync_backup_excludes "$RSYNC_BACKUP_SRC" "$RSYNC_BACKUP_DEST"
|