You have a FreeBSD server that never seems to want to update it’s packages. The issue the repo it uses is the QUARTERLY repo and it needs to be the LATEST repo. At some point in the past, FreeBSD switched the default install to use the QUARTERLY repo instead of LATEST.
mkdir -p /usr/local/etc/pkg/repos
vi /usr/local/etc/pkg/repos/FreeBSD.conf
FreeBSD-ports: { url: “pkg+https://pkg.FreeBSD.org/${ABI}/latest”, }
pkg update -f
pkg upgrade



