From d286f2f49ba9caecbdef470e3347a675d8cf4823 Mon Sep 17 00:00:00 2001 From: Patrick Canterino Date: Mon, 17 Feb 2020 19:54:59 +0100 Subject: [PATCH] Added configuration option "ignoreUpdaterBackups" This option allows to exclude the backup files created by the updater --- NextcloudBackup.sh | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/NextcloudBackup.sh b/NextcloudBackup.sh index 6781eaf..ce9601a 100644 --- a/NextcloudBackup.sh +++ b/NextcloudBackup.sh @@ -65,6 +65,10 @@ dbPassword='mYpAsSw0rd' # TODO: The maximum number of backups to keep (when set to 0, all backups are kept) maxNrOfBackups=0 +# TODO: Ignore updater's backup directory in the data directory to safe space +# Set to true to ignore the backup directory +ignoreUpdaterBackups=false + # File names for backup files # If you prefer other file names, you'll also have to change the NextcloudRestore.sh script. fileNameBackupFileDir='nextcloud-filedir.tar.gz' @@ -150,7 +154,14 @@ echo # Backup data directory # echo "Creating backup of Nextcloud data directory..." -tar -cpzf "${backupdir}/${fileNameBackupDataDir}" -C "${nextcloudDataDir}" . + +if [ "$ignoreUpdaterBackups" = true ] ; then + echo "Ignoring updater backup directory" + tar -cpzf "${backupdir}/${fileNameBackupDataDir}" --exclude="updater-*/backups/*" -C "${nextcloudDataDir}" . +else + tar -cpzf "${backupdir}/${fileNameBackupDataDir}" -C "${nextcloudDataDir}" . +fi + echo "Done" echo @@ -224,4 +235,4 @@ fi echo echo "DONE!" -echo "Backup created: ${backupdir}" \ No newline at end of file +echo "Backup created: ${backupdir}" -- 2.34.1