mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2025-06-25 12:12:15 +02:00
KASM-3806 revert yaml changes to working ones
This commit is contained in:
parent
ea7568b240
commit
ee10b81eef
@ -2250,13 +2250,20 @@ sub DefineConfigToCLIConversion {
|
|||||||
type => KasmVNC::ConfigKey::BOOLEAN
|
type => KasmVNC::ConfigKey::BOOLEAN
|
||||||
})
|
})
|
||||||
],
|
],
|
||||||
deriveValueSub => sub {
|
toStringSub => sub {
|
||||||
undef;
|
$self = shift;
|
||||||
},
|
my $value = $self->configValue();
|
||||||
isActiveSub => sub {
|
|
||||||
my $self = shift;
|
|
||||||
|
|
||||||
$self->configValue() eq 'true';
|
switch($value) {
|
||||||
|
case 'true' {
|
||||||
|
$valuesStr = '-hw3d ';
|
||||||
|
}
|
||||||
|
case 'false' {
|
||||||
|
$valuesStr = ' ';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $valuesStr;
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
KasmVNC::CliOption->new({
|
KasmVNC::CliOption->new({
|
||||||
|
Loading…
x
Reference in New Issue
Block a user