install: Support Ubuntu 24.04.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2024-02-26 15:57:25 -08:00
committed by Tim Abbott
parent 59b0548433
commit 066ea3ebf9
10 changed files with 28 additions and 16 deletions

View File

@@ -231,7 +231,7 @@ if [ -f /etc/os-release ]; then
fi
case "$os_id $os_version_id" in
'debian 11' | 'debian 12' | 'ubuntu 20.04' | 'ubuntu 22.04') ;;
'debian 11' | 'debian 12' | 'ubuntu 20.04' | 'ubuntu 22.04' | 'ubuntu 24.04') ;;
*)
system_requirements_failure <<EOF
Unsupported OS release: $os_id $os_version_id
@@ -241,6 +241,7 @@ Zulip in production is supported only on:
- Debian 12
- Ubuntu 20.04 LTS
- Ubuntu 22.04 LTS
- Ubuntu 24.04 LTS
EOF
;;
esac