mirror of
https://github.com/kevinveenbirkenbach/docker-volume-backup-cleanup.git
synced 2024-11-13 01:21:04 +01:00
45 lines
1.5 KiB
Bash
45 lines
1.5 KiB
Bash
#!/bin/bash
|
|
|
|
# Define backup hash argument as BACKUP_HASH
|
|
BACKUP_HASH="$1"
|
|
|
|
# Define main directory containing subdirectories to potentially be deleted
|
|
MAIN_DIRECTORY="/Backups/$BACKUP_HASH/backup-docker-to-local"
|
|
if [ -d "$MAIN_DIRECTORY" ]; then
|
|
echo "Cleaning up directory: $MAIN_DIRECTORY"
|
|
else
|
|
echo "Error: $MAIN_DIRECTORY does not exist."
|
|
exit 1
|
|
fi
|
|
|
|
# Loop through all subdirectories in the main directory
|
|
for SUBDIR in "$MAIN_DIRECTORY"/*; do
|
|
|
|
# Only proceed if it is a directory
|
|
if [ -d "$SUBDIR" ]; then
|
|
echo "Validating directory: $SUBDIR"
|
|
scripts_directory="$(dirname "$(dirname "$(realpath "$0")")")"
|
|
# Call the Python script for validation
|
|
python $scripts_directory/directory-validator/directory-validator.py "$SUBDIR" --validate
|
|
VALIDATION_STATUS=$?
|
|
|
|
if [ $VALIDATION_STATUS -eq 0 ]; then
|
|
echo "Validation: ok"
|
|
else
|
|
echo "Validation: error"
|
|
# Display the subdirectory contents
|
|
echo "Contents of subdirectory: $SUBDIR"
|
|
ls "$SUBDIR"
|
|
|
|
# Ask for user confirmation before deletion
|
|
read -p "Are you sure you want to delete this subdirectory? (y/n) " -n 1 -r
|
|
echo # move to a new line
|
|
if [[ $REPLY =~ ^[Yy]$ ]]
|
|
then
|
|
# Notify the user of the deletion, then delete the subdirectory
|
|
echo "Deleting subdirectory: $SUBDIR"
|
|
rm -vrf "$SUBDIR"
|
|
fi
|
|
fi
|
|
fi
|
|
done |