From 1e9ab1e4e85404a80efb9a04bf1ec3e9bb11c392 Mon Sep 17 00:00:00 2001 From: Pascal Brouwers Date: Wed, 9 Jul 2025 09:46:18 +0200 Subject: [PATCH] fix: no cli input for deploy:hypernode:setting elasticsearch_enabled True --- .../Task/PlatformConfiguration/HypernodeSettingTask.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Deployer/Task/PlatformConfiguration/HypernodeSettingTask.php b/src/Deployer/Task/PlatformConfiguration/HypernodeSettingTask.php index e9557e2..3f6775d 100644 --- a/src/Deployer/Task/PlatformConfiguration/HypernodeSettingTask.php +++ b/src/Deployer/Task/PlatformConfiguration/HypernodeSettingTask.php @@ -35,7 +35,7 @@ public function configureWithTaskConfig(TaskConfigurationInterface $config): ?Ta $value = $config->getValue(); $taskName = "deploy:hypernode:setting:$attribute"; $task = task($taskName, function () use ($attribute, $value) { - run("hypernode-systemctl settings $attribute $value --block"); + run("yes | hypernode-systemctl settings $attribute $value --block"); }); after('deploy:setup', $taskName); return $task;