My upgrade process for several full jails on a host:
for jail in $(jls name); do
echo "=== Updating jail: $jail ==="
jexec $jail freebsd-update fetch install
jexec $jail pkg upgrade -y
done
service jail restart
Works, gets the job done and is "good enough".








