From 39e1b3664833b4b8e1e1fa3bc04ed28224bf6822 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Mon, 23 Feb 2026 15:38:54 +0000 Subject: [PATCH 1/2] Fix firewall-offline-cmd invocation --- rust/agama-users/src/model.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/agama-users/src/model.rs b/rust/agama-users/src/model.rs index 26b09a5830..93615f6ff4 100644 --- a/rust/agama-users/src/model.rs +++ b/rust/agama-users/src/model.rs @@ -232,7 +232,7 @@ impl Model { fn open_ssh_port(&self) -> Result<(), service::Error> { let firewall_cmd = ChrootCommand::new(self.install_dir.clone())? .cmd("firewall-offline-cmd") - .args(["-add-service=ssh"]) + .args(["--add-service=ssh"]) .output()?; // ignore error if the firewall is not installed, in that case we do need to open the port, From 24d414f68d913a8b11ee8dec72af438d64bd18ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Mon, 23 Feb 2026 15:39:41 +0000 Subject: [PATCH 2/2] 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 8e6e7a32f0..1e1e1a7622 100644 --- a/rust/package/agama.changes +++ b/rust/package/agama.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Feb 23 15:39:24 UTC 2026 - Imobach Gonzalez Sosa + +- Fix firewall-offline-cmd invocation (bsc#1258416). + ------------------------------------------------------------------- Fri Feb 20 10:20:10 UTC 2026 - Imobach Gonzalez Sosa