mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-07-01 11:46:07 +02:00
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
- Implemented safety check that reinstalls nextcloud if issue detected https://github.com/alexbelgium/hassio-addons/issues/764
|
||||||
- Implemented healthcheck
|
- Implemented healthcheck
|
||||||
- Redirect crond errors to addon logs
|
- Redirect crond errors to addon logs
|
||||||
- Improve elasticsearch integration
|
- Improve elasticsearch integration
|
||||||
@@ -7,7 +8,9 @@
|
|||||||
- Corrected elastisearch server definition and test
|
- Corrected elastisearch server definition and test
|
||||||
|
|
||||||
## 25.0.4 (25-02-2023)
|
## 25.0.4 (25-02-2023)
|
||||||
|
|
||||||
- Update to latest version from linuxserver/docker-nextcloud
|
- Update to latest version from linuxserver/docker-nextcloud
|
||||||
|
|
||||||
## 25.0.3 (12-02-2023)
|
## 25.0.3 (12-02-2023)
|
||||||
|
|
||||||
- WARNING! : this is a major code update. Make sure to have a full update of /config, /share and your nextcloud addon before updating. I take no responsibility for lost data!
|
- WARNING! : this is a major code update. Make sure to have a full update of /config, /share and your nextcloud addon before updating. I take no responsibility for lost data!
|
||||||
|
|||||||
@@ -105,6 +105,6 @@
|
|||||||
"slug": "nextcloud_ocr",
|
"slug": "nextcloud_ocr",
|
||||||
"uart": true,
|
"uart": true,
|
||||||
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/nextcloud",
|
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/nextcloud",
|
||||||
"version": "25.0.4-8",
|
"version": "25.0.4-9",
|
||||||
"webui": "https://[HOST]:[PORT:443]"
|
"webui": "https://[HOST]:[PORT:443]"
|
||||||
}
|
}
|
||||||
@@ -18,6 +18,13 @@ for var in /data/config/log/nginx/error.log /data/config/log/nginx/access.log /d
|
|||||||
ln -sf /proc/1/fd/1 "$var"
|
ln -sf /proc/1/fd/1 "$var"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# Check if issues with installation
|
||||||
|
if [[ "$(occ)" == *"Composer autoloader not found"* ]]; then
|
||||||
|
bashio::log.fatal "Issue with installation detected, reinstallation will proceed"
|
||||||
|
if [ -f /data/config/www/nextcloud/index.php ]; then rm -r /data/config/www/nextcloud/index.php; fi
|
||||||
|
bashio::addon.restart
|
||||||
|
fi
|
||||||
|
|
||||||
# Add new log info to config.php
|
# Add new log info to config.php
|
||||||
#for var in /defaults/config.php /data/config/www/nextcloud/config/config.php; do
|
#for var in /defaults/config.php /data/config/www/nextcloud/config/config.php; do
|
||||||
# sed -i "/logfile/d" "$var"
|
# sed -i "/logfile/d" "$var"
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
# Install specific packages
|
# Install specific packages
|
||||||
if [ ! -d /data/config/www/nextcloud/apps/pdfannotate ]; then
|
if [ ! -d /data/config/www/nextcloud/apps/pdfannotate ]; then
|
||||||
CURRENT="$PWD"
|
CURRENT="$PWD"
|
||||||
cd /data/config/www/nextcloud/apps || exit
|
cd /data/config/www/nextcloud/apps &>/dev/null || exit
|
||||||
git clone https://gitlab.com/nextcloud-other/nextcloud-annotate pdfannotate
|
git clone https://gitlab.com/nextcloud-other/nextcloud-annotate pdfannotate
|
||||||
cd "$CURRENT" || exit
|
cd "$CURRENT" || exit
|
||||||
apk add --no-cache ghostscript >/dev/null
|
apk add --no-cache ghostscript >/dev/null
|
||||||
|
|||||||
Reference in New Issue
Block a user