mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
services: Skip php 7.3 which is most likely dead after buster->bullseye migration because users get spooked
This commit is contained in:
parent
ad9b6661c2
commit
51804925f6
1 changed files with 4 additions and 0 deletions
|
@ -710,6 +710,10 @@ def _get_services():
|
|||
)
|
||||
php_fpm_versions = [v for v in php_fpm_versions.split("\n") if v.strip()]
|
||||
for version in php_fpm_versions:
|
||||
# Skip php 7.3 which is most likely dead after buster->bullseye migration
|
||||
# because users get spooked
|
||||
if version == "7.3":
|
||||
continue
|
||||
services[f"php{version}-fpm"] = {
|
||||
"log": f"/var/log/php{version}-fpm.log",
|
||||
"test_conf": f"php-fpm{version} --test", # ofc the service is phpx.y-fpm but the program is php-fpmx.y because why not ...
|
||||
|
|
Loading…
Add table
Reference in a new issue