The ssh-facts command errors out with sed: 1: "s/\s*=\s*/=/": RE error: trailing backslash (\) This happens because FreeBSD sed does not support "\s", so this needs to be replaced by "[[:space:]]". See also https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=253893
A commit in branch main references this bug: URL: https://cgit.FreeBSD.org/ports/commit/?id=10ef4e28ebf00b38ea11a7df9ff900b744b2c2c4 commit 10ef4e28ebf00b38ea11a7df9ff900b744b2c2c4 Author: Mateusz Piotrowski <0mp@FreeBSD.org> AuthorDate: 2022-02-20 14:11:23 +0000 Commit: Mateusz Piotrowski <0mp@FreeBSD.org> CommitDate: 2022-02-20 14:12:33 +0000 security/ssh-tools: Fix regex in ssh-facts PR: 262020 Reported by: freebsd@schukraft.org security/ssh-tools/Makefile | 3 +++ security/ssh-tools/distinfo | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-)
MFC is not required. The port is not present in the quarterly branch. Also, thanks for the report!