anaconda/0001-hotfix-Disable-broken-Xvnc-feature.patch

32 lines
1.1 KiB
Diff
Raw Normal View History

2024-11-18 14:46:26 -08:00
From cccb0e81f26b4c0f2665615f0437bf0ff3d3f9b5 Mon Sep 17 00:00:00 2001
From: Jiri Konecny <jkonecny@redhat.com>
Date: Thu, 24 Oct 2024 10:56:36 +0200
Subject: [PATCH] hotfix: Disable broken Xvnc feature
This way we are helping Fedora to avoid slipping release by disabling
a broken feature in Xvnc by adding parameter for the execution.
Resolves: rhbz#2321249
---
pyanaconda/vnc.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/pyanaconda/vnc.py b/pyanaconda/vnc.py
index dffae2cf48..6747352546 100644
--- a/pyanaconda/vnc.py
+++ b/pyanaconda/vnc.py
@@ -244,8 +244,10 @@ class VncServer(object):
self.setVNCPassword()
# Lets start the xvnc.
+ # FIXME: remove "-rendernode foobar" when rhbz#2321249 is resolved
xvnccommand = [XVNC_BINARY_NAME, ":%s" % constants.X_DISPLAY_NUMBER,
"-depth", "24", "-br",
+ "-rendernode", "foobar",
"IdleTimeout=0", "-auth", "/dev/null", "-once",
"DisconnectClients=false", "desktop=%s" % (self.desktop,),
"SecurityTypes=%s" % SecurityTypes, "rfbauth=%s" % rfbauth]
--
2.47.0