]> git.p6c8.net - nextcloud-backup-restore.git/commitdiff
Readme, bump version
authorDecaTec <jr@decatec.de>
Wed, 13 Oct 2021 10:45:09 +0000 (12:45 +0200)
committerDecaTec <jr@decatec.de>
Wed, 13 Oct 2021 10:45:09 +0000 (12:45 +0200)
CHANGELOG.md
NextcloudBackup.sh
NextcloudRestore.sh
README.md
setup.sh

index d4708e8ec74a59d2034517246d105421ad0b6042..6e4d5f8bdac27c0052a408a44059e54becd56567 100644 (file)
@@ -1,5 +1,10 @@
 # Changelog
 
+## 2.2.0
+
+### General
+- Better handling of external data directory: Backup/restore of external data direcrory is done automatically if the variable `nextcloudLocalExternalDataDir` is set.
+
 ## 2.1.3
 
 ### General
index 1e5dd9c0b5d6497637acc042e207f582a90cfa7f..5a7e091215e05b4e875b1e2c6f4c47ba82873d05 100644 (file)
@@ -3,7 +3,7 @@
 #
 # Bash script for creating backups of Nextcloud.
 #
-# Version 2.1.3
+# Version 2.2.0
 #
 # Usage:
 #      - With backup directory specified in the script:  ./NextcloudBackup.sh
index cca2391651d8db861ae03b515e13442be6e34ba0..8fb38c296e2046260376c8163bf3d36e13b5c06c 100644 (file)
@@ -3,7 +3,7 @@
 #
 # Bash script for restoring backups of Nextcloud.
 #
-# Version 2.1.3
+# Version 2.2.0
 #
 # Usage:
 #   - With backup directory specified in the script: ./NextcloudRestore.sh <BackupName> (e.g. ./NextcloudRestore.sh 20170910_132703)
index a1f5413b072f2b8d64c2ca394e67f3d4dce4db1b..65b5b62ff0c17486501e03400c384f721991e300 100644 (file)
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
 
 This repository contains two bash scripts for backup/restore of [Nextcloud](https://nextcloud.com/).
 
-It is based on a Nextcloud installation using nginx and MariaDB (see the (German) tutorial [Nextcloud auf Ubuntu Server 18.04 LTS mit nginx, MariaDB, PHP, Let’s Encrypt, Redis und Fail2ban](https://decatec.de/home-server/nextcloud-auf-ubuntu-server-18-04-lts-mit-nginx-mariadb-php-lets-encrypt-redis-und-fail2ban/)).
+It is based on a Nextcloud installation using nginx and MariaDB (see the (German) tutorial [Nextcloud auf Ubuntu Server 20.04 LTS mit nginx, MariaDB, PHP, Let’s Encrypt, Redis und Fail2ban](https://decatec.de/home-server/nextcloud-auf-ubuntu-server-20-04-lts-mit-nginx-mariadb-php-lets-encrypt-redis-und-fail2ban/)).
 
 ## General information
 
@@ -20,8 +20,8 @@ The scripts take care of these items to backup automatically.
 - The scripts assume that Nextcloud's data directory is *not* a subdirectory of the Nextcloud installation (file directory). The general recommendation is that the data directory should not be located somewhere in the web folder of your webserver (usually */var/www/*), but in a different folder (e.g. */var/nextcloud_data*). For more information, see [here](https://docs.nextcloud.com/server/latest/admin_manual/installation/installation_wizard.html#data-directory-location-label).
 - However, if your data directory *is* located under the Nextcloud file directory, you'll have to change the scripts so that the data directory is not part of the backup/restore (otherwise, it would be copied twice).
 - The scripts only backup the Nextcloud data directory and can backup a local external storage mounted into Nextcloud. If you have any other external storage mounted in Nextcloud (e.g. FTP), these files have to be handled separately.
-- The scripts assume that you are using MySQL/MariaDB as database for Nextcloud. However, it also supports PostreSQL databases. In this case you have to uncomment the parts of backing up/restoring the database.
-- You should have enabled 4 byte support (see [Nextcloud Administration Manual](https://docs.nextcloud.com/server/latest/admin_manual/configuration_database/mysql_4byte_support.html)) on your Nextcloud database. Otherwise, when you have *not* enabled 4 byte support, you have to edit the restore script, so that the database is not created with 4 byte support enabled.
+- The scripts support MariaDB/MySQL and PostgreSQL as database.
+- You should have enabled 4 byte support (see [Nextcloud Administration Manual](https://docs.nextcloud.com/server/latest/admin_manual/configuration_database/mysql_4byte_support.html)) on your Nextcloud database. Otherwise, when you have *not* enabled 4 byte support, you have to edit the restore script, so that the database is not created with 4 byte support enabled (variable `dbNoMultibyte`).
 
 ## Backup
 
index a9d9c4608f7a0fa93d0d4b93883ab1fb62a4c70a..ed313718afe80bdc5d6f9ea58de20a2911b9e914 100755 (executable)
--- a/setup.sh
+++ b/setup.sh
@@ -3,7 +3,7 @@
 #
 # Bash script an easy setup of NextcloudBackup.sh and NextcloudRestore.sh
 #
-# Version 2.1.2
+# Version 2.2.0
 #
 # Usage:
 #      - call the setup.sh script

patrick-canterino.de