Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/main/resources/static/scripts/install-web-eid.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,9 @@ test_sudo
# version name LTS supported until
# 20.04 focal LTS 2025-04
# 22.04 jammy LTS 2027-04
# 24.04 noble - 2029-04
LATEST_SUPPORTED_UBUNTU_CODENAME='noble'
# 24.04 noble LTS 2029-04
# 24.10 oracular - 2025-07
LATEST_SUPPORTED_UBUNTU_CODENAME='oracular'

# check if Debian or Ubuntu
distro=$(lsb_release -is | tr '[:upper:]' '[:lower:]')
Expand Down Expand Up @@ -158,7 +159,7 @@ case $distro in
utopic|vivid|wily|trusty|artful|cosmic|disco|xenial|eoan|groovy|hirsute|impish|bionic|zorin|kinetic|lunar|mantic)
make_fail "Ubuntu $codename is not officially supported"
;;
focal|jammy|noble)
focal|jammy|noble|oracular)
add_repository $codename
;;
*)
Expand Down