Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbel Büchner-Mihaljević <abel.b-m+gthb@posteo.net>2018-10-21 17:40:36 +0300
committernachoparker <nacho@ownyourbits.com>2018-10-21 17:41:22 +0300
commit6fb1c069eeb63f02be321f5548aed8c6213b08ef (patch)
treea82ed202a6bcd3628c69e61f655285fe138bc22f
parentef3787bb1a5ac774620ffff24aff0c9d3abc8a13 (diff)
nc-rsync: sync datadir, not only content (#686) (#687)v0.64.3
-rw-r--r--changelog.md8
-rw-r--r--etc/ncp-config.d/nc-rsync.sh2
2 files changed, 6 insertions, 4 deletions
diff --git a/changelog.md b/changelog.md
index 19a825f5..6c8d7837 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,7 +1,9 @@
-[v0.64.2](https://github.com/nextcloud/nextcloudpi/commit/10562dc) (2018-10-14) ncp-update-nc: make sure cron.php is not running and there are no pending jobs
+[v0.64.3](https://github.com/nextcloud/nextcloudpi/commit/7d51f7c) (2018-10-21) nc-rsync: sync datadir, not only content (#686) (#687)
-[v0.64.1](https://github.com/nextcloud/nextcloudpi/commit/c036525) (2018-10-12) docker: make bin persistent too
+[v0.64.2 ](https://github.com/nextcloud/nextcloudpi/commit/d6b7267) (2018-10-14) ncp-update-nc: make sure cron.php is not running and there are no pending jobs
+
+[v0.64.1 ](https://github.com/nextcloud/nextcloudpi/commit/c036525) (2018-10-12) docker: make bin persistent too
[v0.64.0 ](https://github.com/nextcloud/nextcloudpi/commit/a9b1542) (2018-10-12) upgrade to NC14.0.3
@@ -15,7 +17,7 @@
[v0.62.7 ](https://github.com/nextcloud/nextcloudpi/commit/54e0968) (2018-10-07) nc-prettyURL: Catch failure of maintenance:update:htaccess (#654)
-[v0.62.6](https://github.com/nextcloud/nextcloudpi/commit/5e3d411) (2018-10-06) nc-limits: fix PHP service restart
+[v0.62.6 ](https://github.com/nextcloud/nextcloudpi/commit/5e3d411) (2018-10-06) nc-limits: fix PHP service restart
[v0.62.5 ](https://github.com/nextcloud/nextcloudpi/commit/0bf6045) (2018-10-03) nc-update-nc: dont fix the news app if there is no news app
diff --git a/etc/ncp-config.d/nc-rsync.sh b/etc/ncp-config.d/nc-rsync.sh
index 7ed1ad38..d92f7e95 100644
--- a/etc/ncp-config.d/nc-rsync.sh
+++ b/etc/ncp-config.d/nc-rsync.sh
@@ -32,7 +32,7 @@ configure()
return 1;
}
- rsync -aAx --delete "$DATADIR"/ "$DESTINATION_"
+ rsync -aAx --delete "$DATADIR" "$DESTINATION_"
sudo -u www-data php "$BASEDIR"/nextcloud/occ maintenance:mode --off
}