mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-12-31 02:52:19 +08:00
Merge pull request #60 from nextcloud/enh/56/exclude-some-folders-from-restore
exclude the session and certs folder from restore
This commit is contained in:
commit
5901054b21
1 changed files with 5 additions and 1 deletions
|
@ -171,7 +171,11 @@ if [ "$BORG_MODE" = restore ]; then
|
|||
echo "Could not mount the backup!"
|
||||
exit 1
|
||||
fi
|
||||
if ! rsync --stats --archive --human-readable -vv --delete --exclude "nextcloud_aio_mastercontainer/data/backup_archives.list" /tmp/borg/nextcloud_aio_volumes/ /nextcloud_aio_volumes; then
|
||||
if ! rsync --stats --archive --human-readable -vv --delete \
|
||||
--exclude "nextcloud_aio_mastercontainer/data/backup_archives.list" \
|
||||
--exclude "nextcloud_aio_mastercontainer/data/session/"** \
|
||||
--exclude "nextcloud_aio_mastercontainer/data/certs/"** \
|
||||
/tmp/borg/nextcloud_aio_volumes/ /nextcloud_aio_volumes; then
|
||||
echo "Something failed while restoring the boot partition."
|
||||
umount /tmp/borg
|
||||
exit 1
|
||||
|
|
Loading…
Reference in a new issue