Remove https prevention for manual-install

Signed-off-by: Berengar W. Lehr <Berengar.Lehr@uni-jena.de>
This commit is contained in:
Berengar W. Lehr
2025-06-05 19:43:55 +02:00
parent a1f204c492
commit f25ac37f35

View File

@ -72,10 +72,6 @@ class RegisterDaemon extends Command {
$output->writeln('Value error: The protocol must be `http` or `https`.');
return 1;
}
if ($acceptsDeployId === 'manual-install' && $protocol !== 'http') {
$output->writeln('Value error: Manual-install daemon supports only `http` protocol.');
return 1;
}
if ($isHarp && !$input->getOption('harp_shared_key')) {
$output->writeln('Value error: HaRP enabled daemon requires `harp_shared_key` option.');
return 1;