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-06 16:51:52 +0300
committernachoparker <nacho@ownyourbits.com>2019-04-06 16:51:55 +0300
commit37546093a6823e557f1e02d2a4eabefefbe0f863 (patch)
tree3a7d9002115af4ec3e9f41d0c09860f66a70ffc5
parenta712935c6d927b8f6edd979da849ffbb87549fd4 (diff)
armbian: fix uuv1.11.2
-rw-r--r--bin/ncp/UPDATES/unattended-upgrades.sh2
-rw-r--r--changelog.md6
-rwxr-xr-xupdate.sh3
3 files changed, 8 insertions, 3 deletions
diff --git a/bin/ncp/UPDATES/unattended-upgrades.sh b/bin/ncp/UPDATES/unattended-upgrades.sh
index 0310d740..05ad218c 100644
--- a/bin/ncp/UPDATES/unattended-upgrades.sh
+++ b/bin/ncp/UPDATES/unattended-upgrades.sh
@@ -13,7 +13,7 @@ install()
{
apt-get update
apt install -y --no-install-recommends unattended-upgrades
- rm /etc/apt/apt.conf.d/20auto-upgrades
+ rm -f /etc/apt/apt.conf.d/20auto-upgrades /etc/apt/apt.conf.d/02-armbian-periodic
}
configure()
diff --git a/changelog.md b/changelog.md
index 96fab4b9..30e277b0 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,7 +1,9 @@
-[v1.11.1](https://github.com/nextcloud/nextcloudpi/commit/2694c6e) (2019-04-05) nc-backup: fix space calculation
+[v1.11.2](https://github.com/nextcloud/nextcloudpi/commit/25ceed5) (2019-04-06) armbian: fix uu
-[v1.11.0](https://github.com/nextcloud/nextcloudpi/commit/5dedeaf) (2019-04-05) upgrade to NC15.0.6
+[v1.11.1](https://github.com/nextcloud/nextcloudpi/commit/a712935) (2019-04-05) nc-backup: fix space calculation
+
+[v1.11.0 ](https://github.com/nextcloud/nextcloudpi/commit/5dedeaf) (2019-04-05) upgrade to NC15.0.6
[v1.10.12](https://github.com/nextcloud/nextcloudpi/commit/a6e33b1) (2019-04-05) update UPDATE config section
diff --git a/update.sh b/update.sh
index 58915658..771dabf4 100755
--- a/update.sh
+++ b/update.sh
@@ -180,6 +180,9 @@ EOF
mv /usr/local/bin/ncp/CONFIG/nc-notify-updates.sh "$updates_dir" || true
) &>/dev/null
+ # armbian fix uu
+ rm -f /etc/apt/apt.conf.d/02-armbian-periodic
+
# 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 )"