From 48e43dcb15cc8eb04b01563e8e79a42c747347e4 Mon Sep 17 00:00:00 2001 From: Yunobot Date: Thu, 21 Feb 2019 20:07:20 +0000 Subject: [PATCH 1/3] Maj Apps-specific configuration --- backup.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/backup.md b/backup.md index 0ba09f01..968fe465 100644 --- a/backup.md +++ b/backup.md @@ -54,7 +54,12 @@ For more informations and options about backup creation, consult `yunohost backu #### Apps-specific configuration -Some apps such as Nextcloud may be related to a large quantity of data which are not backuped by default. This practice is referred to "backing up only the core" (of the app). However it's possible to enable the backup of all data of this app with `yunohost app setting nextcloud backup_core_only -v ''`. Be careful though that your archive might get huge if there's too much data to be backuped... +Some apps such as Nextcloud may be related to a large quantity of data. If you want you can backup the app without the user data. This practice is referred to "backing up only the core" (of the app). + +To enable the backup of all data of this app, you can use `yunohost app setting nextcloud backup_core_only -v ''`. This command add `backup_core_only:` in `etc/yunohost/apps/nextcloud/settings.yml`. Be careful though that your archive might get huge if there's too much data to be backuped... + +To diseable the backup of all data, you can use `yunohost app setting nextcloud backup_core_only -v '1'`. This command add `backup_core_only: '1'` in `etc/yunohost/apps/nextcloud/settings.yml`. Be careful though that mean you will have to backup user data yourself. But doing so, you will be able to do incremental or differential backups of this large amount of data (which is not an option provided by yunohost yet). + Downloading and uploading backups --------------------------------- From 8760c9eb30c686fe2a32bdf92a6c7aec4c443fec Mon Sep 17 00:00:00 2001 From: Gofannon <17145502+Gofannon@users.noreply.github.com> Date: Fri, 22 Feb 2019 00:12:09 +0100 Subject: [PATCH 2/3] typo --- backup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backup.md b/backup.md index 968fe465..4c30ce44 100644 --- a/backup.md +++ b/backup.md @@ -58,7 +58,7 @@ Some apps such as Nextcloud may be related to a large quantity of data. If you w To enable the backup of all data of this app, you can use `yunohost app setting nextcloud backup_core_only -v ''`. This command add `backup_core_only:` in `etc/yunohost/apps/nextcloud/settings.yml`. Be careful though that your archive might get huge if there's too much data to be backuped... -To diseable the backup of all data, you can use `yunohost app setting nextcloud backup_core_only -v '1'`. This command add `backup_core_only: '1'` in `etc/yunohost/apps/nextcloud/settings.yml`. Be careful though that mean you will have to backup user data yourself. But doing so, you will be able to do incremental or differential backups of this large amount of data (which is not an option provided by yunohost yet). +To disable the backup of all data, you can use `yunohost app setting nextcloud backup_core_only -v '1'`. This command add `backup_core_only: '1'` in `etc/yunohost/apps/nextcloud/settings.yml`. Be careful though that mean you will have to backup user data yourself. But doing so, you will be able to do incremental or differential backups of this large amount of data (which is not an option provided by yunohost yet). Downloading and uploading backups From 3c88e8bab375f137f59a69c1a4c2f1f70c22f994 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Fri, 8 Mar 2019 22:23:44 +0100 Subject: [PATCH 3/3] Propagate note to backup_fr (stolen from https://raw.githubusercontent.com/meganaze/doc/8e30c118f8bd95b0579c39bed28641ff50feeb5f/backup_fr.md ) --- backup_fr.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/backup_fr.md b/backup_fr.md index 4c86ffcb..8159dfd8 100644 --- a/backup_fr.md +++ b/backup_fr.md @@ -54,7 +54,11 @@ Pour plus d'informations et d'options sur la création d'archives, consultez `yu #### Configuration spécifique à certaines apps -Certaines apps comme Nextcloud sont potentiellement rattachées à des quantités importantes de données, qui ne sont pas sauvegardées par défaut. Dans ce cas, on dit que l'app "sauvegarde uniquement le core" (de l'app). Néanmoins, il est possible d'activer la sauvegarde de toutes les données de cette application avec (dans le cas de Nextcloud) `yunohost app setting nextcloud backup_core_only -v ''`. Soyez prudent : en fonction des données stockées dans Nextcloud, il se peut que l'archive que vous obtenez ensuite devienne énorme... +Certaines apps comme Nextcloud sont potentiellement rattachées à des quantités importantes de données. Il est possible de ne pas les sauvegarder par défaut. Dans ce cas, on dit que l'app "sauvegarde uniquement le core" (de l'app). + +Pour activer la sauvegarde de toutes les données de cette application vous pouvez utiliser (dans le cas de Nextcloud) `yunohost app setting nextcloud backup_core_only -v ''`. Cette commande ajoute `backup_core_only` dans `/etc/yunohost/apps/nextcloud/settings.yml`. Soyez prudent : en fonction des données stockées dans Nextcloud, il se peut que l'archive que vous obtenez ensuite devienne énorme... + +Pour désactiver la sauvegarde de toutes les données de cette application vous pouvez utiliser (dans le cas de Nextcloud) `yunohost app setting nextcloud backup_core_only -v '1'`. Cette commande ajoute `backup_core_only: '1'` dans `/etc/yunohost/apps/nextcloud/settings.yml`. Soyez prudent : il vous faudra alors sauvegarder vous même les données des utilisateurs de nextcloud. Choisir ce type de sauvegarde vous permettra de mettre en place manuellement des sauvegardes incrémentielles ou différentielles (que yunohost ne permet pas encore de faire automatiquement). Télécharger et téléverser des sauvegardes -----------------------------------------