From 91fc778226058ee330ab7b740bb7eb405fd468cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Tue, 13 May 2025 10:26:47 +0100 Subject: [PATCH 1/2] fix(rust): fix questions interactive mode --- rust/agama-server/src/questions.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/agama-server/src/questions.rs b/rust/agama-server/src/questions.rs index 510ee1542b..70b31c5ef1 100644 --- a/rust/agama-server/src/questions.rs +++ b/rust/agama-server/src/questions.rs @@ -281,7 +281,7 @@ impl Questions { #[zbus(property)] fn set_interactive(&mut self, value: bool) { - if value != self.interactive() { + if value == self.interactive() { tracing::info!("interactive value unchanged - {}", value); return; } From 8d7b2fbca52b2335bb54ed52e73334b42630c56c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Tue, 13 May 2025 10:30:17 +0100 Subject: [PATCH 2/2] docs(rust): update changes file --- rust/package/agama.changes | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rust/package/agama.changes b/rust/package/agama.changes index 8c84d1ebf6..11db4d56a9 100644 --- a/rust/package/agama.changes +++ b/rust/package/agama.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue May 13 09:28:46 UTC 2025 - Imobach Gonzalez Sosa + +- Fix setting the mode for questions (bsc#1242441). + ------------------------------------------------------------------- Mon May 12 12:55:40 UTC 2025 - Ladislav Slezák