From 8cf268f40bec5c17c04d0224e96b5b7c6c212c3d Mon Sep 17 00:00:00 2001 From: Nicolas Chan Date: Sat, 21 Mar 2020 17:34:24 -0700 Subject: [PATCH] Fix default to be gzip --- backup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backup.sh b/backup.sh index 783164e..1de034b 100755 --- a/backup.sh +++ b/backup.sh @@ -14,9 +14,9 @@ SERVER_WORLD="" # Server world directory BACKUP_DIRECTORY="" # Directory to save backups in MAX_BACKUPS=128 # -1 indicates unlimited DELETE_METHOD="thin" # Choices: thin, sequential, none; sequential: delete oldest; thin: keep last 24 hourly, last 30 daily, and monthly (use with 1 hr cron interval) -COMPRESSION_ALGORITHM="zstd" # Leave empty for no compression +COMPRESSION_ALGORITHM="gzip" # Leave empty for no compression EXIT_IF_NO_SCREEN=false # Skip backup if there is no minecraft screen running -COMPRESSION_FILE_EXTENSION=".zst" # Leave empty for no compression; Precede with a . (for example: ".gz") +COMPRESSION_FILE_EXTENSION=".gz" # Leave empty for no compression; Precede with a . (for example: ".gz") COMPRESSION_LEVEL=3 # Passed to the compression algorithm ENABLE_CHAT_MESSAGES=false # Tell players in Minecraft chat about backup status PREFIX="Backup" # Shows in the chat message