Question:
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.
Answer:
There is a test for it:
1 2 3 4 |
{{ ansible_distribution_version is version('12.04', '>=') }} {{ sample_version_var is version('1.0', operator='lt', strict=True) }} |