From f1872ca3794f2afb2400104f229bbbba1ccb3bf3 Mon Sep 17 00:00:00 2001 From: Olli Graf Date: Sat, 4 Oct 2025 10:28:40 +0200 Subject: [PATCH] =?UTF-8?q?L=C3=B6schen=20des=20Dump=20Files=20nach=20Komp?= =?UTF-8?q?ression.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backupsd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backupsd b/backupsd index 0a97d1a..158cd9c 100755 --- a/backupsd +++ b/backupsd @@ -2,7 +2,7 @@ BACKUP_REPO="/tank/Backup-Repo" TEMP_DIR="${HOME}/backup" -VERSION="2.06" +VERSION="2.07" #CMD_COMPRESS='pbzip2' CMD_COMPRESS='zstd -T0 -5' verbose=false @@ -52,7 +52,7 @@ fi echo "compressing image with ${CMD_COMPRESS}" -${CMD_COMPRESS} ${FILE} +${CMD_COMPRESS} ${FILE} && rm ${FILE} REPO_DIR="${BACKUP_REPO}/${HOSTNAME}" echo "moving compressed image to repo" if [ ! -d "${REPO_DIR}" ]; then mkdir "${REPO_DIR}"; fi