diff --git a/.templates/01-custom_script.sh b/.templates/01-custom_script.sh index 7cfacb836..28ddbadfd 100755 --- a/.templates/01-custom_script.sh +++ b/.templates/01-custom_script.sh @@ -11,14 +11,11 @@ if [ -f /config/"${slug}".sh ]; then mv -f /config/"${slug}".sh /config/addons_autoscripts/"${slug}".sh fi -# Convert scripts to linux -if [ -f /usr/bin/dos2unix ]; then - dos2unix /config/addons_autoscripts/"${slug}".sh -fi - # Execute scripts if [ -f /config/addons_autoscripts/"${slug}".sh ]; then bashio::log.info "... script found, executing" + # Convert scripts to linux + dos2unix /config/addons_autoscripts/"${slug}".sh chmod +x /config/addons_autoscripts/"${slug}".sh /./config/addons_autoscripts/"${slug}".sh else diff --git a/nextcloud/CHANGELOG.md b/nextcloud/CHANGELOG.md index f8341862d..7eaec3b18 100644 --- a/nextcloud/CHANGELOG.md +++ b/nextcloud/CHANGELOG.md @@ -1,5 +1,6 @@ -- WARNING : PLEASE BACKUP NEXTCLOUD & MARIADB ADDONS BEFORE UPDATING ! -- WARNING : Enables by default updater ; you can disable it with the option "disable_updates" +### 26.0.0-5 (31-03-2023) +- ⚠ WARNING : PLEASE BACKUP NEXTCLOUD & MARIADB ADDONS BEFORE UPDATING ! +- ⚠ WARNING : Enables by default updater ; you can disable it with the option "disable_updates" - Improved updater code - Autocorrection of permission errors in data directory diff --git a/nextcloud/rootfs/etc/cont-init.d/98-upgrade.sh b/nextcloud/rootfs/etc/cont-init.d/98-upgrade.sh old mode 100644 new mode 100755