mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-27 18:43:45 +01:00
vncserver: extract WaitForXvncToStart()
This commit is contained in:
parent
df5d3e506d
commit
7ee1522143
@ -112,9 +112,7 @@ $cmd = &ConstructXvncCmd();
|
||||
# Run $cmd and record the process ID.
|
||||
$pidFile = "$vncUserDir/$host:$displayNumber.pid";
|
||||
&StartXvncAndRecordPID();
|
||||
|
||||
# Give Xvnc a chance to start up
|
||||
sleep(3);
|
||||
&WaitForXvncToStart();
|
||||
|
||||
&IfXvncDidntStartTryFixingFontPathAndStartXvncAgain();
|
||||
|
||||
@ -939,7 +937,7 @@ sub IfXvncDidntStartTryFixingFontPathAndStartXvncAgain {
|
||||
$cmd =~ s@-fp [^ ]+@@;
|
||||
$cmd .= " -fp $defFontPath" if ($defFontPath);
|
||||
&StartXvncAndRecordPID();
|
||||
sleep(3);
|
||||
&WaitForXvncToStart();
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -956,3 +954,7 @@ sub WarnUserXvncNotStartedAndExit {
|
||||
close(LOG);
|
||||
die "\n";
|
||||
}
|
||||
|
||||
sub WaitForXvncToStart {
|
||||
sleep(3);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user