bug fix: php manager

This commit is contained in:
usman@cyberpersons.com
2023-05-17 19:22:19 +05:00
parent 479b36e6ef
commit bd0df1caf2

View File

@@ -1314,7 +1314,7 @@ def getExtensionsInformation(request):
command = 'yum list installed'
resultInstalled = ProcessUtilities.outputExecutioner(command)
command = f'yum list | grep {phpVers} | xargs -n3 | column -t'
command = f'yum list | grep ^{phpVers} | xargs -n3 | column -t'
result = ProcessUtilities.outputExecutioner(command).split('\n')