Hello,
Today I think I found a bug in the ports provider for FreeBSD:
puppet/lib/puppet/provider/package/ports.rb:7:
:portinfo => "/usr/sbin/pkg_info"
The pkg_info command has been replaced with 'pkg info' as of freebsd 10.0 :
https://wiki.freebsd.org/PkgPrimerI've made a simple patch for the issue in ports.rb and freebsd.rb, which appears to fix the problem, but would likely break older releases than 10.0 which use the older pkg_info command. Can I submit a PR as is or do I need to account for older releases? 10.3 is the current oldest supported freebsd release.
Thanks!
Richard