Merge pull request #1476 from ddragic/x11vnc

Docker: fix x11vnc not starting
This commit is contained in:
Jeremy Grossmann 2018-11-29 07:03:58 +07:00 committed by GitHub
commit 647ac87c89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -548,7 +548,7 @@ class DockerVM(BaseNode):
with open(os.path.join(self.working_dir, "vnc.log"), "w") as fd: with open(os.path.join(self.working_dir, "vnc.log"), "w") as fd:
self._vnc_process = yield from asyncio.create_subprocess_exec("x11vnc", self._vnc_process = yield from asyncio.create_subprocess_exec("x11vnc",
"-forever", "-forever",
"-nopw" "-nopw",
"-shared", "-shared",
"-geometry", self._console_resolution, "-geometry", self._console_resolution,
"-display", "WAIT:{}".format(self._display), "-display", "WAIT:{}".format(self._display),