2023-05-27 23:04:22 +02:00
|
|
|
#!/bin/sh
|
|
|
|
backup_to_usb_destination_path="{{ mount_point }}" &&
|
|
|
|
echo "backup to usb destination path: $backup_to_usb_destination_path" &&
|
2023-04-26 22:12:40 +02:00
|
|
|
|
2023-05-27 23:04:22 +02:00
|
|
|
source_path="{{ backup_to_usb_source_path }}" &&
|
2023-04-26 22:12:40 +02:00
|
|
|
echo "source path: $source_path" || exit 1
|
|
|
|
|
2023-05-27 23:04:22 +02:00
|
|
|
if [ ! -d "$backup_to_usb_destination_path" ]; then
|
|
|
|
echo "Directory $backup_to_usb_destination_path does not exist" &&
|
2023-04-26 22:12:40 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
machine_id="$(sha256sum /etc/machine-id | head -c 64 )" &&
|
|
|
|
echo "machine id: $machine_id" &&
|
|
|
|
|
2023-05-27 23:04:22 +02:00
|
|
|
versions_path="$backup_to_usb_destination_path$machine_id/backup-to-usb/" &&
|
2023-04-26 22:12:40 +02:00
|
|
|
echo "versions path: $versions_path" || exit 1
|
|
|
|
|
|
|
|
if [ ! -d "$versions_path" ]; then
|
|
|
|
echo "Creating $versions_path..." &&
|
|
|
|
mkdir -vp $versions_path || exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
previous_version_path="$(ls -d $versions_path* | tail -1)" &&
|
|
|
|
echo "previous versions path: $previous_version_path" &&
|
|
|
|
|
|
|
|
current_version_path="$versions_path$(date '+%Y%m%d%H%M%S')" &&
|
|
|
|
echo "current versions path: $current_version_path" &&
|
|
|
|
|
|
|
|
echo "creating backup destination folder..." &&
|
|
|
|
mkdir -vp "$current_version_path" &&
|
|
|
|
|
2023-05-27 23:04:22 +02:00
|
|
|
echo "Starting synchronization..."
|
2023-04-26 22:12:40 +02:00
|
|
|
rsync -abP --delete --delete-excluded --link-dest="$previous_version_path" "$source_path" "$current_version_path" &&
|
2023-05-27 23:04:22 +02:00
|
|
|
echo "Synchronization finished." || exit 1
|