Right openssl command to check for latest available version

Hi,

the FreeBSD Update wiki page describes a procedure how to check if a newer version of FreeBSD exists.
This procedure uses a openssl(1) command with the rsautl option which is deprecated. The pkeyutl option must now be used.
Does anybody know what the right command is using this new option?
Current command per the Wiki article is: $ openssl rsautl -pubin -inkey pub.ssl -verify <latest.ssl
This procedure is used in the check FreeBSD version Nagios script which I use and needs updating.

Thank you in advance for any pointers.

With kind regards,
Lars
 
Diff:
-    openssl rsautl -pubin -inkey pub.ssl -verify        \
+    openssl pkeyutl -pubin -inkey pub.ssl -verifyrecover    \
         < latest.ssl > tag.new 2>${QUIETREDIR} || true
this freebsd-updaete 14-STABLE vs -CURRENT
 
Back
Top