webapps php backend: check file sock was create

This commit is contained in:
Jorge Pastor 2024-08-30 13:08:13 +02:00
parent 33293d2ba8
commit ace8af24d5
1 changed files with 12 additions and 8 deletions

View File

@ -74,6 +74,7 @@ class PHPController(WebAppServiceMixin, ServiceController):
self.append("# No old config files to delete") self.append("# No old config files to delete")
def save_fpm(self, webapp, context): def save_fpm(self, webapp, context):
context['reload_pool'] = settings.WEBAPPS_PHPFPM_RELOAD_POOL
self.append(textwrap.dedent(""" self.append(textwrap.dedent("""
# Generate FPM configuration # Generate FPM configuration
read -r -d '' fpm_config << 'EOF' || true read -r -d '' fpm_config << 'EOF' || true
@ -85,6 +86,15 @@ class PHPController(WebAppServiceMixin, ServiceController):
echo -e "${fpm_config}" > %(fpm_path)s echo -e "${fpm_config}" > %(fpm_path)s
UPDATED_FPM=1 UPDATED_FPM=1
} }
# Apply changes if needed
if [[ $UPDATED_FPM -eq 1 ]]; then
%(reload_pool)s
# Check that the socket was created
if [[ ! -e %(fpm_listen)s ]]; then
%(reload_pool)s
fi
fi
""") % context """) % context
) )
@ -210,16 +220,10 @@ class PHPController(WebAppServiceMixin, ServiceController):
) )
def commit(self): def commit(self):
context = {
'reload_pool': settings.WEBAPPS_PHPFPM_RELOAD_POOL,
}
self.append(textwrap.dedent(""" self.append(textwrap.dedent("""
# Apply changes if needed # reload apache
if [[ $UPDATED_FPM -eq 1 ]]; then
%(reload_pool)s
fi
coordinate_apache_reload coordinate_apache_reload
""") % context """)
) )
super(PHPController, self).commit() super(PHPController, self).commit()