convert version to integer
This commit is contained in:
parent
07a0c97b5e
commit
34ea674bd4
1 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@
|
||||||
when:
|
when:
|
||||||
- docker_command == 'podman'
|
- docker_command == 'podman'
|
||||||
- ansible_distribution_version == '20.04'
|
- ansible_distribution_version == '20.04'
|
||||||
- ansible_distribution_major_version < 20
|
- ansible_distribution_major_version|int < 20
|
||||||
|
|
||||||
- name: Add Kubic (Podman) repository
|
- name: Add Kubic (Podman) repository
|
||||||
apt_repository:
|
apt_repository:
|
||||||
|
@ -42,4 +42,4 @@
|
||||||
when:
|
when:
|
||||||
- docker_command == 'podman'
|
- docker_command == 'podman'
|
||||||
- ansible_distribution_version == '20.04'
|
- ansible_distribution_version == '20.04'
|
||||||
- ansible_distribution_major_version < 20
|
- ansible_distribution_major_version|int < 20
|
||||||
|
|
Loading…
Reference in a new issue