mirror of
https://github.com/Facundo-prog/automatic_backup_script.git
synced 2025-07-07 11:22:29 +00:00
80 lines
1.6 KiB
Bash
Executable File
80 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Paths
|
|
# Unmount disk after save backup
|
|
unmount_disk=true
|
|
|
|
# Disk backup mount point
|
|
backup_path="/backup-disk"
|
|
|
|
# Origins files array
|
|
origins=("/home/facu/Documents/backup_folder")
|
|
|
|
# Destination backups
|
|
destinations=("$backup_path/facu")
|
|
|
|
# Function to perform backup for each origin-destination pair
|
|
perform_backup() {
|
|
local origin="$1"
|
|
local destination="$2"
|
|
|
|
# The origin folder not exists
|
|
if [ ! -d "$origin" ]; then
|
|
echo "Origin folder not exists: $origin"
|
|
return 1
|
|
fi
|
|
|
|
# The destination folder not exists
|
|
if [ ! -d "$destination" ]; then
|
|
echo "Folder $destination created"
|
|
mkdir "$destination"
|
|
fi
|
|
|
|
# Execute rsync
|
|
rsync -av --delete "$origin/" "$destination/"
|
|
|
|
# Verify folder backup
|
|
if [ $? -eq 0 ]; then
|
|
echo "Backup successfully saved $origin on $destination"
|
|
else
|
|
echo "Error on copy files"
|
|
return 1
|
|
fi
|
|
|
|
return 0
|
|
}
|
|
|
|
|
|
# The mount point disk not exists
|
|
if [ ! -d "$backup_path" ]; then
|
|
mkdir -p "$backup_path"
|
|
echo "Mount point disk created"
|
|
fi
|
|
|
|
|
|
# Mount disk
|
|
mount "$backup_path"
|
|
echo "Mounting disk..."
|
|
|
|
|
|
# The disk not mount
|
|
if ! mountpoint -q "$backup_path"; then
|
|
echo "Error occurred when mounting disk"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
# Iterate over origin-destination pairs and perform backup
|
|
for (( i=0; i<${#origins[@]}; i++ )); do
|
|
perform_backup "${origins[i]}" "${destinations[i]}"
|
|
done
|
|
|
|
|
|
# Unmount disk
|
|
if [ "$unmount_disk" = true ]; then
|
|
if mountpoint -q "$backup_path"; then
|
|
echo "Unmounting disk..."
|
|
umount "$backup_path"
|
|
fi
|
|
fi
|