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;