fix: Names

This commit is contained in:
Tibo De Peuter 2025-11-12 21:04:53 +01:00
parent 55bbc043b2
commit 8b15f665ef
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
2 changed files with 2 additions and 2 deletions

View file

@ -59,7 +59,7 @@ elif ! ssh "${remote}" "test -r '${env_file:=.env}'"; then
usage 2
fi
backupfile="nextcloud_$( date +'%Y%m%d' ).tar.gz"
backupfile="forgejo_$( date +'%Y%m%d' ).tar.gz"
# Check if the script would override existing files.
if [ -e "${local_destination}/${backupfile}" ]; then

View file

@ -74,7 +74,7 @@ fi
# Database backup
base_container='vaultwarden'
database_container='vaultwarden-db'
database_container='vaultwardenDb'
# Create a temporary destination on remote host.
remote_destination="$( ssh "${remote}" 'mktemp -d' )"