Merge pull request #483 from janiosarmento/issue482

#482: Add PHP 8.2 to WO by @janiosarmento
This commit is contained in:
VirtuBox
2022-12-11 15:55:32 +01:00
committed by GitHub
12 changed files with 559 additions and 72 deletions

View File

@@ -168,7 +168,9 @@ class WOService():
'php7.3-fpm',
'php7.4-fpm',
'php8.0-fpm',
'php8.1-fpm',]:
'php8.1-fpm',
'php8.2-fpm',
]:
retcode = subprocess.getstatusoutput('service {0} status'
.format(service_name))
if retcode[0] == 0:

View File

@@ -170,6 +170,9 @@ class WOVar():
wo_php81 = []
for module in wo_module:
wo_php81 = wo_php81 + ["php8.1-{0}".format(module)]
wo_php82 = []
for module in wo_module:
wo_php82 = wo_php82 + ["php8.2-{0}".format(module)]
wo_php_extra = ["graphviz"]