@@ -25,8 +25,7 @@ this software on an OpenVZ based system you will — most likely — not
2525
2626| Operating System | Version | Supported | Notes |
2727| ---------------------------------- | ------- | :----------------: | ----------------------------------------------------------- |
28- | ** Ubuntu** | 20.04 | :white_check_mark : | Documentation written assuming Ubuntu 20.04 as the base OS. |
29- | | 22.04 | :white_check_mark : | MariaDB can be installed without the repo setup script. |
28+ | ** Ubuntu** | 22.04 | :white_check_mark : | Requires additional repositories for PHP |
3029| | 24.04 | :white_check_mark : | MariaDB can be installed without the repo setup script. |
3130| ** RHEL / Rocky Linux / AlmaLinux** | 8 | :white_check_mark : | Extra repos are required. |
3231| | 9 | :white_check_mark : | |
@@ -54,16 +53,13 @@ operating system's package manager to determine the correct packages to install.
5453# Add "add-apt-repository" command
5554apt -y install software-properties-common curl apt-transport-https ca-certificates gnupg
5655
57- # Add additional repositories for PHP (Ubuntu 20.04 and Ubuntu 22.04)
56+ # Add additional repositories for PHP (Ubuntu 22.04)
5857LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php
5958
6059# Add Redis official APT repository
6160curl -fsSL https://packages.redis.io/gpg | sudo gpg --dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg
6261echo " deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb $( lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/redis.list
6362
64- # MariaDB repo setup script (Ubuntu 20.04)
65- curl -LsS https://r.mariadb.com/downloads/mariadb_repo_setup | sudo bash
66-
6763# Update repositories list
6864apt update
6965
0 commit comments