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>2019-04-05 04:25:09 +0300
committernachoparker <nacho@ownyourbits.com>2019-04-05 04:28:33 +0300
commit194d11101bb3ad109a17b8dfea9b63ca046451f1 (patch)
tree6e33d6a9afb7b1c169a447ca22735c3f2fd4bcec
parentb11c13e5313f9d147df5169666d71b4753027893 (diff)
create UPDATE config sectionv1.10.11
-rw-r--r--bin/ncp/UPDATES/nc-autoupdate-nc.sh (renamed from bin/ncp/CONFIG/nc-autoupdate-nc.sh)0
-rw-r--r--bin/ncp/UPDATES/nc-autoupdate-ncp.sh (renamed from bin/ncp/CONFIG/nc-autoupdate-ncp.sh)0
-rw-r--r--bin/ncp/UPDATES/nc-update-nc-apps-auto.sh (renamed from bin/ncp/CONFIG/nc-update-nc-apps-auto.sh)0
-rw-r--r--bin/ncp/UPDATES/unattended-upgrades.sh (renamed from bin/ncp/SYSTEM/unattended-upgrades.sh)0
-rw-r--r--changelog.md4
-rwxr-xr-xupdate.sh5
6 files changed, 8 insertions, 1 deletions
diff --git a/bin/ncp/CONFIG/nc-autoupdate-nc.sh b/bin/ncp/UPDATES/nc-autoupdate-nc.sh
index 78621498..78621498 100644
--- a/bin/ncp/CONFIG/nc-autoupdate-nc.sh
+++ b/bin/ncp/UPDATES/nc-autoupdate-nc.sh
diff --git a/bin/ncp/CONFIG/nc-autoupdate-ncp.sh b/bin/ncp/UPDATES/nc-autoupdate-ncp.sh
index 2a662ac6..2a662ac6 100644
--- a/bin/ncp/CONFIG/nc-autoupdate-ncp.sh
+++ b/bin/ncp/UPDATES/nc-autoupdate-ncp.sh
diff --git a/bin/ncp/CONFIG/nc-update-nc-apps-auto.sh b/bin/ncp/UPDATES/nc-update-nc-apps-auto.sh
index bd50f0ff..bd50f0ff 100644
--- a/bin/ncp/CONFIG/nc-update-nc-apps-auto.sh
+++ b/bin/ncp/UPDATES/nc-update-nc-apps-auto.sh
diff --git a/bin/ncp/SYSTEM/unattended-upgrades.sh b/bin/ncp/UPDATES/unattended-upgrades.sh
index 0310d740..0310d740 100644
--- a/bin/ncp/SYSTEM/unattended-upgrades.sh
+++ b/bin/ncp/UPDATES/unattended-upgrades.sh
diff --git a/changelog.md b/changelog.md
index ae9eea49..94216222 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,7 @@
-[v1.10.10](https://github.com/nextcloud/nextcloudpi/commit/e06a4f6) (2019-04-05) nc-backup: improve needed space calculation (#864)
+[v1.10.11](https://github.com/nextcloud/nextcloudpi/commit/d312af8) (2019-04-04) create UPDATE config section
+
+[v1.10.10](https://github.com/nextcloud/nextcloudpi/commit/b11c13e) (2019-04-05) nc-backup: improve needed space calculation (#864)
[v1.10.9](https://github.com/nextcloud/nextcloudpi/commit/5af854b) (2019-04-01) letsencrypt: dont return error if notif fails
diff --git a/update.sh b/update.sh
index 6294ee88..c51ab155 100755
--- a/update.sh
+++ b/update.sh
@@ -230,6 +230,11 @@ EOF
# update nc-backup
install_app nc-backup
+ # create UPDATES section
+ updates_dir=/usr/local/bin/ncp/UPDATES
+ mkdir -p "$updates_dir"
+ mv /usr/local/bin/ncp/{SYSTEM/unattended-upgrades.sh,CONFIG/nc-autoupdate-nc.sh,CONFIG/nc-autoupdate-ncp.sh,CONFIG/nc-update-nc-apps-auto.sh} "$updates_dir"
+
# remove redundant opcache configuration. Leave until update bug is fixed -> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=815968
# Bug #416 reappeared after we moved to php7.2 and debian buster packages. (keep last)
[[ "$( ls -l /etc/php/7.2/fpm/conf.d/*-opcache.ini | wc -l )" -gt 1 ]] && rm "$( ls /etc/php/7.2/fpm/conf.d/*-opcache.ini | tail -1 )"