Skip to content

Commit

Permalink
Remove dead spice_vd_agent code
Browse files Browse the repository at this point in the history
This code is not used since migration to Wayland. We need another
solution for this feature.
  • Loading branch information
jkonecny12 committed Sep 10, 2024
1 parent be1c293 commit 46eab17
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions pyanaconda/display.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,25 +84,6 @@ def start_user_systemd():
os.environ["DBUS_SESSION_BUS_ADDRESS"] = session_bus_address
log.info("The session bus address is set to %s.", session_bus_address)

# Spice

def start_spice_vd_agent():
"""Start the spice vdagent.
For certain features to work spice requires that the guest os
is running the spice vdagent.
"""
try:
status = util.execWithRedirect("spice-vdagent", [])
except OSError as e:
log.warning("spice-vdagent failed: %s", e)
return

if status:
log.info("spice-vdagent exited with status %d", status)
else:
log.info("Started spice-vdagent.")


# RDP

Expand Down

0 comments on commit 46eab17

Please sign in to comment.