Skip to content

Commit e124265

Browse files
authored
Merge pull request #169 from pbrouwers/fix/deploy-hypernode-setting-no-cli-input
fix: no cli input for deploy:hypernode:setting elasticsearch_enabled …
2 parents af83994 + 1e9ab1e commit e124265

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Deployer/Task/PlatformConfiguration/HypernodeSettingTask.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function configureWithTaskConfig(TaskConfigurationInterface $config): ?Ta
3535
$value = $config->getValue();
3636
$taskName = "deploy:hypernode:setting:$attribute";
3737
$task = task($taskName, function () use ($attribute, $value) {
38-
run("hypernode-systemctl settings $attribute $value --block");
38+
run("yes | hypernode-systemctl settings $attribute $value --block");
3939
});
4040
after('deploy:setup', $taskName);
4141
return $task;

0 commit comments

Comments
 (0)