From 89b651321711d916ff1ecb310d331e3a871dbb8c Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Fri, 30 Jan 2026 09:55:53 +0100 Subject: [PATCH] installer: need at least ubuntu 22 --- scripts/installer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/installer.sh b/scripts/installer.sh index b11df005d..e8e2a2cda 100755 --- a/scripts/installer.sh +++ b/scripts/installer.sh @@ -73,8 +73,8 @@ readonly is_update=$(systemctl is-active -q box && echo "yes" || echo "no") log "Updating from $(cat $box_src_dir/VERSION 2>/dev/null) to $(cat $box_src_next_dir/VERSION 2>/dev/null)" -if [[ "${ubuntu_version}" == "18.04" ]]; then - log "This Cloudron version requires atleast Ubuntu 20.04. Please upgrade following https://docs.cloudron.io/guides/upgrade-ubuntu-20/" +if [[ "${ubuntu_version}" == "22.04" ]]; then + log "This Cloudron version requires atleast Ubuntu 22.04. Please upgrade following https://docs.cloudron.io/guides/upgrade-ubuntu-22/" exit 2 fi