From bb4d12902521d879a4e786cbffcb9e79cb8078a9 Mon Sep 17 00:00:00 2001 From: Kirill Pushkarev Date: Thu, 11 Jul 2024 10:46:48 +0700 Subject: [PATCH] Fix a comment in `FixOsVendorPhpFpmConfiguration` --- cloudlinux7to8/actions/php.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cloudlinux7to8/actions/php.py b/cloudlinux7to8/actions/php.py index d4e72a5..ad0735a 100644 --- a/cloudlinux7to8/actions/php.py +++ b/cloudlinux7to8/actions/php.py @@ -22,8 +22,8 @@ def _prepare_action(self) -> action.ActionResult: def _post_action(self) -> action.ActionResult: # Plesk expect www pool to be disabled by default. - # Every distro should has the same configuration generated by Plesk. - # However we store the original configuration in the www.conf.saved_by_psa file. + # Every distro should have the same configuration generated by Plesk. + # However, we store the original configuration in the www.conf.saved_by_psa file. if os.path.exists(f"{OS_VENDOR_PHP_FPM_CONFIG}.rpmnew"): shutil.move(f"{OS_VENDOR_PHP_FPM_CONFIG}.rpmnew", f"{OS_VENDOR_PHP_FPM_CONFIG}.saved_by_psa") elif os.path.exists(f"{OS_VENDOR_PHP_FPM_CONFIG}.rpmsave"):