Skip to content

Commit

Permalink
Merge pull request #4 from plesk/allow-php70-php56
Browse files Browse the repository at this point in the history
Allow conversion when PHP 7.0 or PHP 5.6 are installed
  • Loading branch information
SandakovMM authored Jul 18, 2024
2 parents c273ca5 + 0dd3a7e commit 2d0cd30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The conversion process should run between 30 and 60 minutes. **Plesk services, h
Do not use the script if any of the following is true:
- **You are running an OS other than CloudLinux 7.9**. The script was not tested on other Red Hat Enterprise Linux 7-based distributions. The conversion process may have unexpected results if started on a server not running CloudLinux 7.9. So we add checks to avoid any actions on such kinds of servers.
- **Plesk version is more than five releases behind the latest version**. The script is only compatible with the most recent versions of Plesk. It will prevent conversion if Plesk version is outdated.
- **PHP 7.0 and earlier are not supported** in CloudLinux 8, and will not receive any updates after the conversion. These PHP versions are deprecated and may have security vulnerabilities. So we force to remove this versions before the conversion.
- **PHP 5.5 and earlier are not supported** in CloudLinux 8, and will not receive any updates after the conversion. These PHP versions are deprecated and may have security vulnerabilities. So we force to remove this versions before the conversion.
- **Conversion inside containers (like Virtuozzo containers, Docker Containers, etc) are not supported**.
- **More than one kernel named interfaces (like ethX) are not supported**. Stability of such names are not guaranteed, so leapp prevent the conversion in such cases.

Expand Down
2 changes: 1 addition & 1 deletion cloudlinux7to8/upgrader.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def get_check_actions(
if phase is Phase.FINISH:
return [custom_actions.AssertDistroIsCloudLinux8()]

FIRST_SUPPORTED_BY_ALMA_8_PHP_VERSION = "7.1"
FIRST_SUPPORTED_BY_ALMA_8_PHP_VERSION = "5.6"
checks = [
common_actions.AssertPleskVersionIsAvailable(),
common_actions.AssertPleskInstallerNotInProgress(),
Expand Down

0 comments on commit 2d0cd30

Please sign in to comment.