Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rust/agama-users/src/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
5 changes: 5 additions & 0 deletions rust/package/agama.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Mon Feb 23 15:39:24 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>

- Fix firewall-offline-cmd invocation (bsc#1258416).

-------------------------------------------------------------------
Fri Feb 20 10:20:10 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>

Expand Down
Loading