services: Skip php 7.3 which is most likely dead after buster->bullseye migration because users get spooked

This commit is contained in:
Alexandre Aubin 2022-08-07 23:04:21 +02:00
parent ad9b6661c2
commit 51804925f6

View file

@ -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 ...