Tree file management strategy and file backups #3
4 changed files with 37 additions and 0 deletions
28
src/file/backup.sh
Normal file
28
src/file/backup.sh
Normal file
|
@ -0,0 +1,28 @@
|
|||
# takes a list of space-separated absolute paths
|
||||
# backs each path up, creating canonical or ephemeral copies as needed
|
||||
backup_paths() {
|
||||
local paths="$1"
|
||||
local canonical_path=
|
||||
local ephemeral_path=
|
||||
|
||||
for path in $paths; do
|
||||
canonical_path="$BACKUP_ROOT/canonical$path"
|
||||
timestamp="$(date +'%Y-%m-%dT%H-%M-%S')"
|
||||
ephemeral_path="$BACKUP_ROOT/ephemeral${path}_$timestamp"
|
||||
|
||||
if [ -f "$canonical_path" ]; then
|
||||
log debug "[backup] Creating ephemeral copy for $path"
|
||||
mkdir -p "$(dirname "$ephemeral_path")"
|
||||
if [ -f "$ephemeral_path" ]; then
|
||||
log debug "[backup] Overwriting ephemeral copy for $path"
|
||||
cp -f "$path" "$ephemeral_path"
|
||||
else
|
||||
cp "$path" "$ephemeral_path"
|
||||
fi
|
||||
else
|
||||
log debug "[backup] Creating canonical copy for $path"
|
||||
mkdir -p "$(dirname "$canonical_path")"
|
||||
cp "$path" "$canonical_path"
|
||||
fi
|
||||
done
|
||||
}
|
|
@ -53,9 +53,11 @@ file_merge_tree() {
|
|||
if [ "$strategy" -eq 0 ]; then
|
||||
return 0
|
||||
elif [ "$strategy" -eq 1 ]; then
|
||||
backup_paths "$absolute_path"
|
||||
cp -vi "$config_path" "$absolute_path"
|
||||
return 1
|
||||
elif [ "$strategy" -eq 2 ]; then
|
||||
backup_paths "$config_path"
|
||||
cp -vi "$absolute_path" "$config_path"
|
||||
return 1
|
||||
elif [ "$strategy" -eq 3 ]; then
|
||||
|
|
|
@ -11,3 +11,4 @@
|
|||
. "$TORI_ROOT/src/package/update_package_cache.sh"
|
||||
|
||||
. "$TORI_ROOT/src/file/file_merge.sh"
|
||||
. "$TORI_ROOT/src/file/backup.sh"
|
||||
|
|
|
@ -134,6 +134,12 @@ prepare_directories() {
|
|||
|
||||
if ! [ -d "$BACKUP_ROOT" ]; then
|
||||
mkdir -p "$BACKUP_ROOT"
|
||||
if ! [ -d "$BACKUP_ROOT/canonical" ]; then
|
||||
mkdir "$BACKUP_ROOT/canonical"
|
||||
fi
|
||||
if ! [ -d "$BACKUP_ROOT/ephemeral" ]; then
|
||||
mkdir "$BACKUP_ROOT/ephemeral"
|
||||
fi
|
||||
fi
|
||||
|
||||
if ! [ -d "$CONFIG_ROOT" ]; then
|
||||
|
|
Loading…
Reference in a new issue