Issue #19293 has been updated by Antoine Jacoutot.
Hailee Kenney wrote: > Since you have a patch written, would it be possible for you to submit it via > GitHub? This should walk you through the submission process: > > https://github.com/puppetlabs/puppet/blob/master/CONTRIBUTING.md > > Thanks! Done. https://github.com/puppetlabs/facter/pull/440 ---------------------------------------- Feature #19293: OpenBSD: enhance release fact https://projects.puppetlabs.com/issues/19293#change-90866 * Author: Antoine Jacoutot * Status: Investigating * Priority: Normal * Assignee: Antoine Jacoutot * Category: * Target version: * Keywords: * Branch: * Affected Facter version: 1.6.17 ---------------------------------------- Hi. This patch enhances the release fact for OpenBSD. Currently facter only outputs the main release version number without the actual substring information. * before <pre> $ facter |grep -E '(kern|operatingsystem).*(version|release)' kernelmajversion => 5.3 kernelrelease => 5.3 kernelversion => 5.3 operatingsystemrelease => 5.3 </pre> * after <pre> $ facter |grep -E '(kern|operatingsystem).*(version|release)' kernelmajversion => 5.3 kernelrelease => 5.3-beta kernelversion => 5.3 operatingsystemrelease => 5.3-beta </pre> => we now properly output 5.3-beta instead of just 5.3. I will commit that change to our ports repository but it'd be nice to have it upstream at one point. Thank you. -- You have received this notification because you have either subscribed to it, or are involved in it. To change your notification preferences, please click here: http://projects.puppetlabs.com/my/account -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/puppet-bugs?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
