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:
authornachoparker <nacho@ownyourbits.com>2017-12-26 12:10:50 +0300
committernachoparker <nacho@ownyourbits.com>2017-12-26 12:11:08 +0300
commite10dd39ecae71b6acb229b530385d13bac24104f (patch)
tree09a67ac2784ffcba05b46b9b9abc2f4d4d9b9acd
parent803a1f1c8d2cfb25b247e748ceda1677bad679b7 (diff)
nc-datadir: use clone on btrfs systemsv0.43.3
-rw-r--r--changelog.md6
-rw-r--r--etc/nextcloudpi-config.d/nc-audit.sh2
-rw-r--r--etc/nextcloudpi-config.d/nc-datadir.sh2
3 files changed, 6 insertions, 4 deletions
diff --git a/changelog.md b/changelog.md
index 5f98d799..faa19db0 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,7 +1,9 @@
-[v0.43.2](https://github.com/nextcloud/nextcloudpi/commit/113a1ab) (2017-12-19) UFW: prettier output
+[v0.43.3](https://github.com/nextcloud/nextcloudpi/commit/de97104) (2017-12-26) nc-datadir: use clone on btrfs systems
-[v0.43.1](https://github.com/nextcloud/nextcloudpi/commit/114ea18) (2017-12-19) ncp-config: validate input
+[v0.43.2](https://github.com/nextcloud/nextcloudpi/commit/ae8d30b) (2017-12-19) UFW: prettier output
+
+[v0.43.1 ](https://github.com/nextcloud/nextcloudpi/commit/114ea18) (2017-12-19) ncp-config: validate input
[v0.43.0 ](https://github.com/nextcloud/nextcloudpi/commit/9eeb221) (2017-12-18) added nc-audit
diff --git a/etc/nextcloudpi-config.d/nc-audit.sh b/etc/nextcloudpi-config.d/nc-audit.sh
index b05f50a1..eb7fc320 100644
--- a/etc/nextcloudpi-config.d/nc-audit.sh
+++ b/etc/nextcloudpi-config.d/nc-audit.sh
@@ -29,7 +29,7 @@ skip-test=CUST-0810
# Won't install puppet or similar
skip-test=TOOL-5002
-# Raspbian doesn't have security sources (link)
+# Raspbian doesn't have security sources ( https://www.raspberrypi.org/forums/viewtopic.php?t=98006&p=680175 )
skip-test=PKGS-7388
# We have a preset partition scheme in the SD card
diff --git a/etc/nextcloudpi-config.d/nc-datadir.sh b/etc/nextcloudpi-config.d/nc-datadir.sh
index 9b654628..cf59eb15 100644
--- a/etc/nextcloudpi-config.d/nc-datadir.sh
+++ b/etc/nextcloudpi-config.d/nc-datadir.sh
@@ -77,7 +77,7 @@ configure()
btrfs subvolume create "$DATADIR_" || return 1
}
- cp -raT "$SRCDIR" "$DATADIR_" || return 1
+ cp --reflink=auto -raT "$SRCDIR" "$DATADIR_" || return 1
# tmp upload dir
mkdir -p "$DATADIR_/tmp"