From cb4939bd85f383647bad8e8d29b6a62dae7bc8cc Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Mon, 2 Feb 2026 21:31:57 +0100 Subject: [PATCH] fix: php reload --- deployer/typo3-recipe.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/deployer/typo3-recipe.php b/deployer/typo3-recipe.php index fe666b5..eed01ce 100644 --- a/deployer/typo3-recipe.php +++ b/deployer/typo3-recipe.php @@ -142,9 +142,14 @@ set('release_or_current_path', function () { // PHP-FPM Reload (for NixOS infrastructure) // ============================================================================= -task('php:reload', function () { +// needed for t3o infrastructure +task('php:reload', function() { run('php-reload'); -})->desc('Reload PHP-FPM'); +})->select('stage=contentmaster'); + +task('php:reload-prod', function() { + run('php-reload'); +})->select('stage=production'); // ============================================================================= // Deployment Strategies