Remove support for Ubuntu 20.04 and Debian 11.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
Anders Kaseorg
2024-03-25 14:31:39 -07:00
parent ce075fec6c
commit 70914b0475
30 changed files with 49 additions and 204 deletions

View File

@@ -19,8 +19,8 @@ One can install the Zulip development environment directly on a Linux
host by following these instructions. Currently supported platforms
are:
- Ubuntu 20.04, 22.04, 24.04
- Debian 11, 12
- Ubuntu 22.04, 24.04
- Debian 12
- CentOS 7 (beta)
- Fedora 38 (beta)
- RHEL 7 (beta)

View File

@@ -71,8 +71,8 @@ the internet.)
:::{tab-item} Ubuntu/Debian
:sync: os-ubuntu
- Ubuntu 20.04, 22.04, or 24.04
- Debian 11 or 12
- Ubuntu 22.04, or 24.04
- Debian 12
:::
:::{tab-item} Fedora

View File

@@ -62,16 +62,16 @@ branch, or a significant time has passed since you last used it.
### Test an install
The `test-install` tooling takes a distribution release name
(e.g. "focal"), the path to an unpacked release directory
(e.g. "jammy"), the path to an unpacked release directory
or tarball, and then any of the normal options you want to pass down
into the installer.
For example, to test an install onto Ubuntu 20.04 "Focal", we might
For example, to test an install onto Ubuntu 22.04 "Jammy", we might
call:
```bash
sudo ./tools/test-install/install \
-r focal \
-r jammy \
./zulip-test-installer/ \
--hostname=zulip.example.net \
--email=username@example.net
@@ -97,7 +97,7 @@ After using `lxc-ls` to list containers, you can choose one of them
and connect to its terminal:
```bash
sudo lxc-attach --clear-env -n zulip-install-focal-PUvff
sudo lxc-attach --clear-env -n zulip-install-jammy-PUvff
```
### Stopping and destroying containers
@@ -112,7 +112,7 @@ sudo ./tools/test-install/destroy-all -f
To destroy just one container:
```bash
sudo lxc-destroy -f -n zulip-install-focal-PUvff
sudo lxc-destroy -f -n zulip-install-jammy-PUvff
```
### Iterating on the installer
@@ -126,7 +126,7 @@ which will start up a new container. Here, we update just the
rsync -az scripts puppet zulip-test-installer/zulip-server/
sudo ./tools/test-install/install \
-r focal \
-r jammy \
./zulip-test-installer/ \
--hostname=zulip.example.net \
--email=username@example.net