Draft of renaming structure

This commit is contained in:
2020-05-02 12:12:51 +02:00
parent 8493126985
commit 4e4af4430d
12 changed files with 1 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
#!/bin/bash
# Executes all scripts which are necessary to backup data
# @author Kevin Veen-Birkenbach [aka. Frantz]
source "$(dirname "$(readlink -f "${0}")")/base.sh"
bash "$SCRIPT_PATH/import-data-from-system.sh"
bash "$SCRIPT_PATH/push-local-repositories.sh"

View File

@@ -0,0 +1,6 @@
#!/bin/bash
# Executes the import script in reverse mode
# @author Kevin Veen-Birkenbach [aka. Frantz]
# shellcheck source=/dev/null # Deactivate SC1090
source "$(dirname "$(readlink -f "${0}")")/base.sh"
bash "$SCRIPT_PATH/import-data-from-system.sh" reverse

View File

@@ -0,0 +1,62 @@
#!/bin/bash
#
# Imports data from the system
# @author Kevin Veen-Birkenbach [aka. Frantz]
# @param $1 If the first parameter is "reverse" the data will be exported to the system
#
# shellcheck source=/dev/null # Deactivate SC1090
# shellcheck disable=SC2143 # Comparing with -z allowed
source "$(dirname "$(readlink -f "${0}")")/base.sh"
if [ -z "$(mount | grep "$DECRYPTED_PATH")" ]
then
echo "The decrypted folder $DECRYPTED_PATH is locked. You need to unlock it!"
bash "$SCRIPT_PATH/unlock.sh" || exit 1;
fi
if [ "$1" = "reverse" ]
then
MODE="export"
else
MODE="import"
fi
CONCRETE_BACKUP_FOLDER="$BACKUP_PATH/$MODE/$(date '+%Y%m%d%H%M%S')"
mkdir -p "$CONCRETE_BACKUP_FOLDER"
for system_item_path in "${BACKUP_LIST[@]}";
do
data_item_path="$DATA_PATH$system_item_path"
if [ "$MODE" = "export" ]
then
destination="$system_item_path"
source="$data_item_path"
echo "Export data from $source to $destination..."
else
source="$system_item_path"
destination="$data_item_path"
echo "Import data from $source to $destination..."
fi
if [ -f "$destination" ]
then
echo "The destination file allready exists!";
echo "Difference:"
diff "$destination" "$source"
fi
destination_dir=$(dirname "$destination")
mkdir -p "$destination_dir"
if [ -f "$source" ]
then
backup_dir=$(dirname "$CONCRETE_BACKUP_FOLDER/$system_item_path");
mkdir -p "$backup_dir"
echo "Copy data from $source to $destination..."
rsync -abcEPuvW --backup-dir="$backup_dir" "$source" "$destination"
else
if [ -d "$source" ]
then
mkdir -p "$destination"
backup_dir="$CONCRETE_BACKUP_FOLDER/$system_item_path";
mkdir -p "$backup_dir"
echo "Copy data from directory $source to directory $destination..."
rsync -abcEPuvW --delete --backup-dir="$backup_dir" "$source" "$destination"
else
echo "$source doesn't exist. Copying data is not possible."
fi
fi
done