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:
Diffstat (limited to 'updates/1.35.0.sh')
-rw-r--r--updates/1.35.0.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/updates/1.35.0.sh b/updates/1.35.0.sh
new file mode 100644
index 00000000..bb24a126
--- /dev/null
+++ b/updates/1.35.0.sh
@@ -0,0 +1,23 @@
+#!/bin/bash
+
+set -e
+
+## BACKWARD FIXES ( for older images )
+
+source /usr/local/etc/library.sh # sets NCVER PHPVER RELEASE
+
+# all images
+
+is_active_app unattended-upgrades && run_app unattended-upgrades
+
+# docker images only
+[[ -f /.docker-image ]] && {
+ :
+}
+
+# for non docker images
+[[ ! -f /.docker-image ]] && {
+ :
+}
+
+exit 0