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>2018-05-25 14:32:42 +0300
committernachoparker <nacho@ownyourbits.com>2018-05-25 14:33:23 +0300
commit027a2a02bddfad3152d00de6b2134a9d8b21edbf (patch)
tree4706d26ae748a53ea399efd2bbe3b6d0f31927ce
parent438e73d199ceacd4996a23d8a7e9b9aefd489b29 (diff)
nc-ramlogs: fix docker installation from latest upstream changesv0.56.10
-rw-r--r--changelog.md6
-rw-r--r--etc/ncp-config.d/nc-ramlogs.sh1
2 files changed, 5 insertions, 2 deletions
diff --git a/changelog.md b/changelog.md
index f5a8aaba..a6653116 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,7 +1,9 @@
-[v0.56.9](https://github.com/nextcloud/nextcloudpi/commit/72cd80d) (2018-05-24) remove old systemd timer config in running systems
+[v0.56.10](https://github.com/nextcloud/nextcloudpi/commit/4348861) (2018-05-25) nc-ramlogs: fix docker installation from latest upstream changes
-[v0.56.8](https://github.com/nextcloud/nextcloudpi/commit/cf42bf8) (2018-05-22) fix php cli tmpdir for running instances
+[v0.56.9](https://github.com/nextcloud/nextcloudpi/commit/dc41bef) (2018-05-24) remove old systemd timer config in running systems
+
+[v0.56.8 ](https://github.com/nextcloud/nextcloudpi/commit/cf42bf8) (2018-05-22) fix php cli tmpdir for running instances
[v0.56.7 ](https://github.com/nextcloud/nextcloudpi/commit/54da658) (2018-05-22) move NC httpd logs to /var/log
diff --git a/etc/ncp-config.d/nc-ramlogs.sh b/etc/ncp-config.d/nc-ramlogs.sh
index 23c30431..62417751 100644
--- a/etc/ncp-config.d/nc-ramlogs.sh
+++ b/etc/ncp-config.d/nc-ramlogs.sh
@@ -26,6 +26,7 @@ install()
curl -Lo log2ram.tar.gz https://github.com/azlux/log2ram/archive/master.tar.gz
tar xf log2ram.tar.gz
cd log2ram-master
+ sed -i '/systemctl -q is-active log2ram/d' install.sh
sed -i '/systemctl enable log2ram/d' install.sh
chmod +x install.sh && sudo ./install.sh
cd ..