You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run the following python snippet the service doesn't seem to stop.
importdbusbus=dbus.SystemBus()
proxy=bus.get_object("com.redhat.tuned", "/Tuned")
stop_method=dbus.Interface(proxy, dbus_interface="com.redhat.tuned.control")
result=stop_method.stop()
print( result ) # this prints 1
I'm presented the password prompt to authenticate the dbus stop request.
After I authenticate, print( result ) prints the value 1 signaling success.
When I run systemctl status tuned to check if the service has stopped, it shows the service as Active: active (running)
Am I misunderstanding what this stops? Is it stopping something internal in the daemon / service ?
Operating System: Fedora Linux 41
KDE Plasma Version: 6.2.5
KDE Frameworks Version: 6.9.0
Qt Version: 6.8.1
Kernel Version: 6.12.7-200.fc41.x86_64 (64-bit)
Graphics Platform: Wayland
The text was updated successfully, but these errors were encountered:
When I run the following python snippet the service doesn't seem to stop.
print( result )
prints the value 1 signaling success.When I run
systemctl status tuned
to check if the service has stopped, it shows the service asActive: active (running)
Am I misunderstanding what this stops? Is it stopping something internal in the daemon / service ?
Operating System: Fedora Linux 41
KDE Plasma Version: 6.2.5
KDE Frameworks Version: 6.9.0
Qt Version: 6.8.1
Kernel Version: 6.12.7-200.fc41.x86_64 (64-bit)
Graphics Platform: Wayland
The text was updated successfully, but these errors were encountered: