Created attachment 204873 [details] Change ${security_status_pkgaudit_quiet:-YES} to ${security_status_pkgaudit_quiet:=YES} in 410.pkg-audit periodic/security fails to use default -q option and gives verbose display when reporting packages with security vulnerabilities
fixed in git, will be in the next release, thank you!
In a very related (verbose output), how about not spitting out empty jail names when they have no output? Here's a little patch demonstrating it. for j in $jails ; do output='' for t in audit expiration deprecation; do output=${output}$(${t}_pkgs "-j ${j%|*}" ${j##*|}) last_rc=$? [ $last_rc -gt 1 ] && rc=$last_rc done if [ -n "$output" ]; then echo echo "jail: ${j%|*}" echo $output fi done Thanks for your consideration.