backup-automation/full-backup.sh
ZoopaMario 4b8546c6a1
Some checks failed
Lint Bash Scripts / lint-bash (push) Failing after 59s
Check Commit Messages / check-commit-message (pull_request) Successful in 19s
Lint Bash Scripts / lint-bash (pull_request) Failing after 24s
WIP Refactor code base
Add a library file containing common logic to be sourced by individual backup scripts
2024-12-30 05:26:05 +01:00

19 lines
469 B
Bash
Executable file

#!/bin/bash
SCRIPT_ABS_LOCATION=$(realpath "$(dirname "${0}")")
# Define an array of application names
declare -a apps=("cryptpad" "immich" "duplicati" "nextcloud" "vaultwarden" "forgejo" "portainer")
# Function to execute the backup script for each application
backup_app() {
local app=$1
"$SCRIPT_ABS_LOCATION/$app/$app-backup.sh"
}
# Iterate over each app in the array and call the backup function
for app in "${apps[@]}"; do
backup_app "$app"
done