For a role I'm developing I need to verify that the kernel version is greater than a particular version.
I've found the ansible_kernel
fact, but is there an easy way to compare this to other versions? I thought I might manually explode the version string on the .
's and compare the numbers, but I can't even find a friendly filter to explode the version string out, so I'm at a loss.
There is a test for it:
{{ ansible_distribution_version | version_compare('12.04', '>=') }}
{{ sample_version_var | version_compare('1.0', operator='lt', strict=True) }}