From 64a5f17ba9b1264f502a697ee99ff55eb0eb916b Mon Sep 17 00:00:00 2001 From: Kristel Merilain Date: Wed, 1 Nov 2023 15:17:17 +0200 Subject: [PATCH] Add mantic support Signed-off-by: Kristel Merilain --- .../resources/static/scripts/download-install-web-eid.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main/resources/static/scripts/download-install-web-eid.sh b/src/main/resources/static/scripts/download-install-web-eid.sh index 4300382..f866c64 100755 --- a/src/main/resources/static/scripts/download-install-web-eid.sh +++ b/src/main/resources/static/scripts/download-install-web-eid.sh @@ -62,8 +62,9 @@ test_sudo # 20.04 focal LTS 2025-04 # 22.04 jammy LTS 2027-04 # 23.04 lunar - 2024-01 -LATEST_SUPPORTED_UBUNTU_CODENAME='lunar' -LATEST_SUPPORTED_UBUNTU_VERSION='23.04' +# 23.10 mantic - 2024-07 +LATEST_SUPPORTED_UBUNTU_CODENAME='mantic' +LATEST_SUPPORTED_UBUNTU_VERSION='23.10' # Check the distro and release. distro=$(lsb_release -is | tr '[:upper:]' '[:lower:]') @@ -98,7 +99,7 @@ case $distro in utopic|vivid|wily|trusty|artful|cosmic|disco|xenial|eoan|groovy|hirsute|impish|bionic|kinetic) make_fail "Ubuntu $codename is not officially supported" ;; - focal|jammy|lunar) + focal|jammy|lunar|mantic) make_install $release ;; *)