diff options
-rw-r--r-- | satellit_upgrader/updater.template.sh | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/satellit_upgrader/updater.template.sh b/satellit_upgrader/updater.template.sh index 5cd45b6..d325f04 100644 --- a/satellit_upgrader/updater.template.sh +++ b/satellit_upgrader/updater.template.sh @@ -42,13 +42,23 @@ fi delay= readonly MAJOR CODENAME + +if [[ "$(uname -m)" == i?86 ]]; then + echo "Please note: This bwLehrpool server is still running on a 32 Bit OS install." + echo "This release will be the last one with 32 Bit support. Please consider backing" + echo "up your configuration and setting up a fresh server with the latest" + echo "bwLehrpool server image." + echo "" + delay=1 +fi + if (( MAJOR < 9 )); then echo "This Version of the bwLehrpool Satellite Server is too old!" echo "Back up your existing configuration via slx-admin and import it into a" echo "fresh install, or manually dist-upgrade this server." exit 1 fi -if (( MAJOR > 11 )); then +if (( MAJOR > 12 )); then echo "This Version of the bwLehrpool Satellite Server is too new!" exit 1 fi |