You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This function aims to reduce the boiler plate that a lot of modules have
to compare versions:
if $facts['operatingsystem'] == 'Ubuntu' && versioncmp(facts['operatingsystemmajrelease'], '16.04') >= 0 {
Can now be reduced to:
if os_version_gte('Ubuntu', '16.04') {
0 commit comments