From b401363f6b17f44eb468d535a9cf66d731e68ae9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Mon, 25 Nov 2024 19:51:02 +0000 Subject: [PATCH 1/3] fix(rust): fix the Questions proxy default path --- rust/agama-lib/src/proxies/questions/questions.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rust/agama-lib/src/proxies/questions/questions.rs b/rust/agama-lib/src/proxies/questions/questions.rs index a41bc59da2..8f838c2c84 100644 --- a/rust/agama-lib/src/proxies/questions/questions.rs +++ b/rust/agama-lib/src/proxies/questions/questions.rs @@ -44,6 +44,7 @@ use zbus::proxy; #[proxy( default_service = "org.opensuse.Agama1", interface = "org.opensuse.Agama1.Questions", + default_path = "/org/opensuse/Agama1/Questions", assume_defaults = true )] pub trait Questions { From efd13ac84f900b8b093fe9ec8e700712360314c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Mon, 25 Nov 2024 19:53:28 +0000 Subject: [PATCH 2/3] doc(rust): update changes file --- rust/package/agama.changes | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/rust/package/agama.changes b/rust/package/agama.changes index 81447f6ad3..604161b8a9 100644 --- a/rust/package/agama.changes +++ b/rust/package/agama.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 25 19:51:20 UTC 2024 - Imobach Gonzalez Sosa + +- Fix the default path of the D-Bus Questions object and the ISCSI + Initiator interface (gh#agama-project/agama#1785). + ------------------------------------------------------------------- Fri Nov 15 16:48:44 UTC 2024 - Ladislav Slezák From a87830da9f072bd23063157f3697e80a2966a483 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Tue, 26 Nov 2024 06:28:05 +0000 Subject: [PATCH 3/3] fix(rust): set the path of the o.o.Agama.Storage1.ISCSI.Initiator interface --- rust/agama-lib/src/storage/proxies/iscsi/initiator.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rust/agama-lib/src/storage/proxies/iscsi/initiator.rs b/rust/agama-lib/src/storage/proxies/iscsi/initiator.rs index 12bd97afa7..171d49fb0c 100644 --- a/rust/agama-lib/src/storage/proxies/iscsi/initiator.rs +++ b/rust/agama-lib/src/storage/proxies/iscsi/initiator.rs @@ -42,6 +42,7 @@ use zbus::proxy; #[proxy( default_service = "org.opensuse.Agama.Storage1", + default_path = "/org/opensuse/Agama/Storage1", interface = "org.opensuse.Agama.Storage1.ISCSI.Initiator", assume_defaults = true )]