You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
580 B
Bash
24 lines
580 B
Bash
#!/bin/bash
|
|
|
|
# DOCKER BACKUP
|
|
# source /home/nathan/scripts/backup/borg/docker_backup.sh \
|
|
# -c "duckdns homer" \
|
|
# -d /home/samba/share/Docker_prod \
|
|
# -b /home/nathan/testBack \
|
|
# -r pi2 \
|
|
# -R ~/backups/pi1/docker \
|
|
# -N 0
|
|
|
|
# DIRECTORY BACKUP
|
|
source /home/nathan/scripts/backup/borg/directory_backup.sh \
|
|
-d "/home/nathan/AA/A /home/nathan/AA/C" \
|
|
-b /home/nathan/testBack/dir \
|
|
-r pi2 \
|
|
-R ~/backups/pi1/AA
|
|
|
|
source /home/nathan/scripts/backup/borg/directory_backup.sh \
|
|
-d /var/spool/cron/crontabs \
|
|
-b /home/nathan/testBack/cron \
|
|
-r pi2 \
|
|
-R ~/backups/pi1/cron
|