fix LE cron

This commit is contained in:
nachoparker 2019-03-03 20:16:17 -07:00
parent 41601e94ed
commit 060f0042f6
2 changed files with 10 additions and 4 deletions

View File

@ -1,11 +1,13 @@
[v1.9.0](https://github.com/nextcloud/nextcloudpi/commit/6660bf1) (2019-03-03) upgrade to NC15.0.5
[v1.9.1](https://github.com/nextcloud/nextcloudpi/commit/33663b1) (2019-03-03) fix LE cron
[v1.8.3 ](https://github.com/nextcloud/nextcloudpi/commit/b2f38db) (2019-02-23) nc-nextcloud: disable .user.ini
[v1.9.0 ](https://github.com/nextcloud/nextcloudpi/commit/b6a8d63) (2019-03-03) upgrade to NC15.0.5
[v1.8.2 ](https://github.com/nextcloud/nextcloudpi/commit/1dfa11a) (2019-02-23) nc-limits: autocalculate database memory
[v1.8.3 ](https://github.com/nextcloud/nextcloudpi/commit/19e5008) (2019-02-23) nc-nextcloud: disable .user.ini
[v1.8.1 ](https://github.com/nextcloud/nextcloudpi/commit/2a0dc38) (2019-02-22) lamp: adjust mariadb parameters
[v1.8.2 ](https://github.com/nextcloud/nextcloudpi/commit/89d26b4) (2019-02-23) nc-limits: autocalculate database memory
[v1.8.1 ](https://github.com/nextcloud/nextcloudpi/commit/64fa53d) (2019-02-22) lamp: adjust mariadb parameters
[v1.8.0](https://github.com/nextcloud/nextcloudpi/commit/602b3f2) (2019-02-23) add nc-maintenance-mode (#809)

View File

@ -198,6 +198,10 @@ EOF
bash -c "sleep 3 && service php$PHPVER-fpm restart" &
}
# fix LE cron
is_active_app letsencrypt && run_app letsencrypt
# 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 )"