change message for backwards compatibility msg (#1395)

This commit is contained in:
Daniel Hansson 2020-09-01 20:19:06 +02:00 committed by GitHub
parent 597188acfc
commit 6bfdd693bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 3 deletions

View File

@ -4,7 +4,11 @@ true
# shellcheck source=lib.sh
. <(curl -sL https://raw.githubusercontent.com/nextcloud/vm/master/lib.sh)
# Backwards compatibility
run script LETS_ENC activate-tls
# This is needed since we removed this from the startup script, or changed name so it can't be downloaded anymore
msg_box "You are running an outdated release.
You see this message only to make it possible to run the first startup script, but as time goes, more and more will we incompatible.
We urge you to download the latest version as soon as possible: https://github.com/nextcloud/vm/releases"
exit

View File

@ -1 +1,14 @@
# just here for backwards compatibility
#!/bin/bash
# shellcheck disable=2034,2059
true
# shellcheck source=lib.sh
. <(curl -sL https://raw.githubusercontent.com/nextcloud/vm/master/lib.sh)
# This is needed since we removed this from the startup script, or changed name so it can't be downloaded anymore
msg_box "You are running an outdated release.
You see this message only to make it possible to run the first startup script, but as time goes, more and more will we incompatible.
We urge you to download the latest version as soon as possible: https://github.com/nextcloud/vm/releases"
exit