diff options
author | Simon Rettberg | 2020-02-27 16:23:24 +0100 |
---|---|---|
committer | Simon Rettberg | 2020-02-27 16:23:24 +0100 |
commit | d5d078100234b84941f3a7b217f7afb239722180 (patch) | |
tree | 360fbe5cebcf1b2f425c33c0ac213d45575a101b /satellit_upgrader | |
parent | [SSPS] slx-admin.config: Move wol/rebootcontrol to server settings (diff) | |
download | setup-scripts-d5d078100234b84941f3a7b217f7afb239722180.tar.gz setup-scripts-d5d078100234b84941f3a7b217f7afb239722180.tar.xz setup-scripts-d5d078100234b84941f3a7b217f7afb239722180.zip |
[SSUS] Fix java update on Debian 10
Diffstat (limited to 'satellit_upgrader')
-rw-r--r-- | satellit_upgrader/updater.template.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/satellit_upgrader/updater.template.sh b/satellit_upgrader/updater.template.sh index 0246f9a..366387e 100644 --- a/satellit_upgrader/updater.template.sh +++ b/satellit_upgrader/updater.template.sh @@ -250,12 +250,12 @@ if [ -f "/etc/cron.daily/tmpdelete.sh" ]; then fi if [ "$MAJOR" -eq 9 ]; then - java="7" - php="-1" + java="7" # highest UNWANTED version + php="-1" # highest UNWANTED version mysql="10.1" elif [ "$MAJOR" -eq 10 ]; then - java="11" - php="2" + java="10" # highest UNWANTED version + php="2" # highest UNWANTED version mysql="10.3" else perror "Abort" |