2021-01-11 14:14:36 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2021-01-11 14:24:29 +01:00
|
|
|
# log command
|
2021-01-11 14:14:36 +01:00
|
|
|
if [ -n "$SSH_ORIGINAL_COMMAND" ]
|
|
|
|
then
|
2021-01-11 14:24:29 +01:00
|
|
|
echo "`/bin/date`: $SSH_ORIGINAL_COMMAND" | systemd-cat -t "ssh-wrapper.sh"
|
2021-01-11 14:14:36 +01:00
|
|
|
fi
|
|
|
|
|
2021-01-11 15:01:09 +01:00
|
|
|
# define executable commands
|
2023-04-12 13:37:04 +02:00
|
|
|
get_hashed_machine_id="sha256sum /etc/machine-id";
|
2023-04-19 13:36:19 +02:00
|
|
|
hashed_machine_id="$($get_hashed_machine_id | head -c 64)"
|
|
|
|
get_backup_types="find /Backups/$hashed_machine_id/ -maxdepth 1 -type d -execdir basename {} ;";
|
|
|
|
|
2023-04-12 13:37:04 +02:00
|
|
|
|
2023-11-16 17:07:28 +01:00
|
|
|
# @todo This configuration is not scalable yet. If other backup services then backup-docker-to-local are integrated, this logic needs to be optimized
|
|
|
|
get_version_directories="ls -d /Backups/$hashed_machine_id/backup-docker-to-local/*"
|
2023-04-19 13:36:19 +02:00
|
|
|
last_version_directory="$($get_version_directories | tail -1)"
|
|
|
|
rsync_command="sudo rsync --server --sender -blogDtpre.iLsfxCIvu . $last_version_directory/"
|
2021-01-11 15:01:09 +01:00
|
|
|
|
2021-01-11 14:14:36 +01:00
|
|
|
# filter commands
|
|
|
|
case "$SSH_ORIGINAL_COMMAND" in
|
2023-04-12 13:37:04 +02:00
|
|
|
"$get_hashed_machine_id")
|
|
|
|
$get_hashed_machine_id
|
|
|
|
;;
|
2023-04-19 13:36:19 +02:00
|
|
|
"$get_version_directories")
|
|
|
|
$get_version_directories
|
2021-01-11 14:14:36 +01:00
|
|
|
;;
|
2023-04-12 13:37:04 +02:00
|
|
|
"$get_backup_types")
|
|
|
|
$get_backup_types
|
2021-01-11 14:14:36 +01:00
|
|
|
;;
|
2021-01-11 15:01:09 +01:00
|
|
|
"$rsync_command")
|
|
|
|
$rsync_command
|
2021-01-11 14:14:36 +01:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "This command is not supported."
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|