Disable `node upgrade` during launch

This commit is contained in:
3wc 2020-11-20 11:59:31 +02:00
parent 11d767b20f
commit 4b972903dd
2 changed files with 4 additions and 9 deletions

View File

@ -72,7 +72,7 @@ Create local archives of both the `adapt_authoring` folder and database:
### Docker Swarm ### Docker Swarm
See [`compose-stacks/adapt_authoring`] for an example Docker "swarm mode" See [`coop-cloud/adapt_authoring`] for an example Docker "swarm mode"
configuration, including secrets, SSL reverse proxy, and continuous integration configuration, including secrets, SSL reverse proxy, and continuous integration
tests of the stack deployment. tests of the stack deployment.
@ -82,5 +82,7 @@ tests of the stack deployment.
rate-limited by Github (the script checks Github for the latest Adapt rate-limited by Github (the script checks Github for the latest Adapt
Authoring version, and to clone the Authoring Framework and plug-ins). Wait Authoring version, and to clone the Authoring Framework and plug-ins). Wait
an hour, or use a VPN. an hour, or use a VPN.
- `node upgrade` doesn't work, because code is downloaded as a ZIP archive
instead of using a `git clone`
[`compose-stacks/adapt_authoring`]: https://git.autonomic.zone/compose-stacks/adapt_authoring/ [`coop-cloud/adapt_authoring`]: https://git.autonomic.zone/coop-cloud/adapt_authoring/

View File

@ -50,11 +50,6 @@ install_adapt() {
#--smtpUsername "${SMTP_USERNAME}" --smtpPassword "${SMTP_PASSWORD}" \ #--smtpUsername "${SMTP_USERNAME}" --smtpPassword "${SMTP_PASSWORD}" \
} }
update_adapt() {
echo "'conf' dir found, running 'node upgrade ...'"
node upgrade --continue Y --updateAutomatically Y
}
main() { main() {
set -eu set -eu
@ -62,8 +57,6 @@ main() {
if [ ! -d conf ]; then if [ ! -d conf ]; then
install_adapt install_adapt
else
update_adapt
fi fi
} }