diff --git a/SOURCES/0001-power-Respect-the-nothing-power-button-action-for-VM.patch b/SOURCES/0001-power-Respect-the-nothing-power-button-action-for-VM.patch new file mode 100644 index 0000000..84e6e63 --- /dev/null +++ b/SOURCES/0001-power-Respect-the-nothing-power-button-action-for-VM.patch @@ -0,0 +1,59 @@ +From 0e2c4aec104b65d2f8ea7167269e91c303908a6f Mon Sep 17 00:00:00 2001 +From: Felipe Borges +Date: Wed, 4 Jan 2023 15:30:15 +0100 +Subject: [PATCH] power: Respect the "nothing" power-button-action for VMs + +There are use-cases when one wants to forcefully make the guest ignore +poweroff requests from the hypervisor. + +See https://bugzilla.redhat.com/2062051 + +See also https://gitlab.gnome.org/GNOME/gnome-settings-daemon/-/issues/46 +--- + ...org.gnome.settings-daemon.plugins.power.gschema.xml.in | 2 +- + plugins/media-keys/gsd-media-keys-manager.c | 8 +++++--- + 2 files changed, 6 insertions(+), 4 deletions(-) + +diff --git a/data/org.gnome.settings-daemon.plugins.power.gschema.xml.in b/data/org.gnome.settings-daemon.plugins.power.gschema.xml.in +index 93c704e9..fc61d133 100644 +--- a/data/org.gnome.settings-daemon.plugins.power.gschema.xml.in ++++ b/data/org.gnome.settings-daemon.plugins.power.gschema.xml.in +@@ -39,7 +39,7 @@ + + 'suspend' + Power button action +- The action to take when the system power button is pressed. This action is hard-coded (and the setting ignored) on virtual machines (power off) and tablets (suspend). ++ The action to take when the system power button is pressed. Virtual machines only honor the 'nothing' action, and will shutdown otherwise. Tablets always suspend, ignoring all the other action options. + + + +diff --git a/plugins/media-keys/gsd-media-keys-manager.c b/plugins/media-keys/gsd-media-keys-manager.c +index a526d5cf..ac6f7ab4 100644 +--- a/plugins/media-keys/gsd-media-keys-manager.c ++++ b/plugins/media-keys/gsd-media-keys-manager.c +@@ -2083,9 +2083,12 @@ do_config_power_button_action (GsdMediaKeysManager *manager, + if (manager->priv->power_button_disabled) + return; + +- /* Always power off VMs when power off is pressed in the menus */ ++ action_type = g_settings_get_enum (manager->priv->power_settings, "power-button-action"); ++ /* Always power off VMs, except when power-button-action is "nothing" */ + if (g_strcmp0 (manager->priv->chassis_type, "vm") == 0) { +- power_action (manager, "PowerOff", !in_lock_screen); ++ if (action_type != GSD_POWER_BUTTON_ACTION_NOTHING) ++ power_action (manager, "PowerOff", !in_lock_screen); ++ + return; + } + +@@ -2095,7 +2098,6 @@ do_config_power_button_action (GsdMediaKeysManager *manager, + return; + } + +- action_type = g_settings_get_enum (manager->priv->power_settings, "power-button-action"); + switch (action_type) { + case GSD_POWER_BUTTON_ACTION_SUSPEND: + action = GSD_POWER_ACTION_SUSPEND; +-- +2.37.1 + diff --git a/SPECS/gnome-settings-daemon.spec b/SPECS/gnome-settings-daemon.spec index 5a9d9e0..0079408 100644 --- a/SPECS/gnome-settings-daemon.spec +++ b/SPECS/gnome-settings-daemon.spec @@ -12,7 +12,7 @@ Name: gnome-settings-daemon Version: 3.32.0 -Release: 16%{?dist}.1 +Release: 18%{?dist} Summary: The daemon sharing settings from GNOME to GTK+/KDE applications License: GPLv2+ @@ -120,8 +120,11 @@ Patch50017: 0017-Update-translations.patch Patch60001: 0001-power-Only-disable-Suspend-Hibernate-actions-inside-.patch -Patch70001: 0001-power-Avoid-automatic-logout-in-GDM-greeter.patch -Patch70002: 0002-power-Never-register-sleep-timeout-for-logout-in-GDM.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=2062051 +Patch70001: 0001-power-Respect-the-nothing-power-button-action-for-VM.patch +# https://bugzilla.redhat.com/show_bug.cgi?id=2018606 +Patch70002: 0001-power-Avoid-automatic-logout-in-GDM-greeter.patch +Patch70003: 0002-power-Never-register-sleep-timeout-for-logout-in-GDM.patch %description A daemon to share settings from GNOME to other applications. It also @@ -253,9 +256,13 @@ mkdir $RPM_BUILD_ROOT%{_libdir}/gnome-settings-daemon-3.0/gtk-modules %{_libdir}/pkgconfig/gnome-settings-daemon.pc %changelog -* Thu Sep 08 2022 Felipe Borges - 3.32.0-16.el8_7.1 +* Tue Jan 24 2023 Felipe Borges - 3.32.0-18 - Prevent automatic logout warning in greeter sessions -- Resolves: #2122962 +- Resolves: #2018606 + +* Wed Jan 04 2023 Felipe Borges - 3.32.0-17 +- Make power-button-action respect the "nothing" action on VMs +- Resolves: #2062051 * Fri Sep 10 2021 Kalev Lember - 3.32.0-16 - Update pt_BR translations