get the tree correct
This commit is contained in:
parent
055dd98c22
commit
d6a3774a0d
1 changed files with 3 additions and 3 deletions
|
@ -6,11 +6,11 @@
|
|||
- packages
|
||||
when: (ansible_distribution == 'RedHat' and ansible_distribution_major_version|int < 8) or (ansible_distribution_major_version|int < 30 and ansible_distribution == 'Fedora')
|
||||
|
||||
- name: install python3-GeoIP
|
||||
package: name=python3-GeoIP state=present
|
||||
- name: install python3-geoip2 (RHEL8)
|
||||
package: name=python3-geoip2 state=present
|
||||
tags:
|
||||
- packages
|
||||
when: (ansible_distribution == 'RedHat' and ansible_distribution_major_version|int >= 8) or (ansible_distribution_major_version|int >= 30 and ansible_distribution == 'Fedora')
|
||||
when: (ansible_distribution == 'RedHat' and ansible_distribution_major_version|int >= 8)
|
||||
|
||||
- name: push over the geoip db once
|
||||
copy: src={{ item }} dest=/usr/share/GeoIP/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue