Puppet Function: sssd::supported_version
- Defined in:
- functions/supported_version.pp
- Function type:
- Puppet Language
Overview
Returns “true“ if the version of SSSD installed on the system is supported and “false“ otherwise.
Assumes that the system is relatively modern and therefore, supported by default
8 9 10 11 12 13 14 15 |
# File 'functions/supported_version.pp', line 8
function sssd::supported_version {
if $facts['sssd_version'] and (versioncmp($facts['sssd_version'], '1.16.0') < 0) {
false
}
else {
true
}
}
|