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-09-30 15:57:59 +0300
committernachoparker <nacho@ownyourbits.com>2017-09-30 15:59:21 +0300
commitcfcb53524bff5d4c5fa479a5d22224b186242131 (patch)
treee15049e1f0938d6da52ddbb42481da0cee1a5f1b
parentb2500f3cf23afddba71ac90eac0caa3ab7a12a33 (diff)
nc-format-USB: speed up ext4 creation with lazy initializationv0.31.4
-rw-r--r--changelog.md8
-rw-r--r--etc/nextcloudpi-config.d/nc-format-USB.sh2
2 files changed, 7 insertions, 3 deletions
diff --git a/changelog.md b/changelog.md
index 8b19eb02..41778855 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,7 +1,11 @@
-[v0.31.2](https://github.com/nextcloud/nextcloudpi/commit/ac8af38) (2017-09-30) ncp-web: remove http2 push headers. They dont play well with pwauth (#224)
+[v0.31.4](https://github.com/nextcloud/nextcloudpi/commit/ebd1fc1) (2017-09-30) nc-format-USB: speed up ext4 creation with lazy initialization
-[v0.31.1](https://github.com/nextcloud/nextcloudpi/commit/789850c) (2017-09-28) nc-static-IP: fix occ path
+[v0.31.3 ](https://github.com/nextcloud/nextcloudpi/commit/c2abfaa) (2017-09-30) letsencrypt: fix uppercase domains cert path (Closes #229)
+
+[v0.31.2 ](https://github.com/nextcloud/nextcloudpi/commit/e3ef973) (2017-09-30) ncp-web: remove http2 push headers. They dont play well with pwauth (#224)
+
+[v0.31.1 ](https://github.com/nextcloud/nextcloudpi/commit/789850c) (2017-09-28) nc-static-IP: fix occ path
[v0.31.0](https://github.com/nextcloud/nextcloudpi/commit/a9f90b9) (2017-09-27) wizard: connect backend with frontend. Modifications for first release
diff --git a/etc/nextcloudpi-config.d/nc-format-USB.sh b/etc/nextcloudpi-config.d/nc-format-USB.sh
index 16b2bbe0..60baab89 100644
--- a/etc/nextcloudpi-config.d/nc-format-USB.sh
+++ b/etc/nextcloudpi-config.d/nc-format-USB.sh
@@ -47,7 +47,7 @@ configure()
wipefs -a -f /dev/"$NAME" || return 1
printf 'o\nn\np\n1\n\n\nw\n' | sudo fdisk /dev/"$NAME" || return 1
- mkfs.ext4 -q -F /dev/"${NAME}1" -L "$LABEL_"
+ mkfs.ext4 -q -E lazy_itable_init=0,lazy_journal_init=0 -F /dev/"${NAME}1" -L "$LABEL_"
}
install() { :; }