1
0
mirror of https://github.com/tommytran732/Pterodactyl-Script synced 2024-09-19 07:34:43 -04:00

Update instructions to change dnf module

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy 2022-12-16 15:43:30 -05:00
parent f066d493e0
commit 09dd5f7b1b
No known key found for this signature in database
GPG Key ID: 060B29EB996BD9F2

View File

@ -15,6 +15,7 @@ Visit my Matrix group: https://matrix.to/#/#tommy:arcticfoxes.net
- Daemon installation - Daemon installation
- Daemon upgrade - Daemon upgrade
- Basic firewall configuration - Basic firewall configuration
- Fail2ban for SSH and Wings
- Automatic LetsEncrypt certificate generation - Automatic LetsEncrypt certificate generation
- MariaDB SSL - MariaDB SSL
- HSTS enabled - HSTS enabled
@ -26,9 +27,7 @@ Visit my Matrix group: https://matrix.to/#/#tommy:arcticfoxes.net
Currently, PHP, Composer, and Redis are installed from Remi's modular repository. As such, they will only get minor version updates with `dnf upgrade` (PHP 8.1.0 -> PHP 8.1.x for example). For updates between major versions of these dependencies, use `dnf module` to change the appstream for these dependencies.<br /> Currently, PHP, Composer, and Redis are installed from Remi's modular repository. As such, they will only get minor version updates with `dnf upgrade` (PHP 8.1.0 -> PHP 8.1.x for example). For updates between major versions of these dependencies, use `dnf module` to change the appstream for these dependencies.<br />
```bash ```bash
dnf module reset php:remi-8.0 dnf module switch-to php:remi-8.1
dnf module install php:remi-8.1
dnf distro-sync
``` ```
NGINX, MariaDB, and Docker-CE uses upstream repositories and will get the latest version available on there automatically. NGINX, MariaDB, and Docker-CE uses upstream repositories and will get the latest version available on there automatically.
@ -41,4 +40,4 @@ Ideally, we would want everything to be reproducible from the OS to the Pterodac
# Supported Distributions # Supported Distributions
Only RHEL 9 and its derivatives (CentOS Stream 9, Rocky Linux 9 , AlmaLinux 9) are supported at the moment. Fedora may get supported in the future if there are interest in it. Only RHEL 9 and its derivatives (CentOS Stream 9, Rocky Linux 9 , AlmaLinux 9) are supported at the moment. Fedora may get supported in the future if there are interest in it.
Ubuntu, Debian, and openSUSE are unlikely to get supported, due to them not supporting modular repositories which makes dependency updates cumbersome. Ubuntu, Debian, and openSUSE are unlikely to get supported, due to them not supporting modular repositories which makes dependency updates cumbersome.