mirror of
https://github.com/napnap75/multiarch-docker-images.git
synced 2025-12-16 03:34:18 +01:00
Added the ability to exclude files
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
function backup_dir {
|
function backup_dir {
|
||||||
# Check if the dir to backup is mounted as a subdirectory of /root inside this container
|
# Check if the dir to backup is mounted as a subdirectory of /root inside this container
|
||||||
if [ -d "/root_fs$1" ]; then
|
if [ -d "/root_fs$1" ]; then
|
||||||
restic backup /root_fs$1
|
restic backup $RESTIC_BACKUP_FLAGS /root_fs$1
|
||||||
return $?
|
return $?
|
||||||
else
|
else
|
||||||
echo "[ERROR] Directory $1 not found. Have you mounted the root fs from your host with the following option : '-v /:/root_fs:ro' ?"
|
echo "[ERROR] Directory $1 not found. Have you mounted the root fs from your host with the following option : '-v /:/root_fs:ro' ?"
|
||||||
@@ -14,7 +14,7 @@ function backup_dir {
|
|||||||
|
|
||||||
# Backup one file
|
# Backup one file
|
||||||
function backup_file {
|
function backup_file {
|
||||||
cat $1 | restic backup --stdin --stdin-filename $2
|
cat $1 | restic backup $RESTIC_BACKUP_FLAGS --stdin --stdin-filename $2
|
||||||
return $?
|
return $?
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user