File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 30
30
chdir : " {{ ((ansible_facts['system'] | lower is not search('bsd')) | ternary('/etc/nginx', '/usr/local/sbin')) }}"
31
31
changed_when : false
32
32
register : version
33
- failed_when : version is not search('1.23.4 ')
33
+ failed_when : version is not search('1.25.0 ')
Original file line number Diff line number Diff line change 66
66
- name : (Debian/Red Hat/SLES OSs) Install cryptography package
67
67
ansible.builtin.package :
68
68
name : " {{ (ansible_python['version']['major'] == 3) | ternary('python3-cryptography', 'python2-cryptography') }}"
69
- when :
70
- - ansible_facts['distribution'] != "OracleLinux"
71
- - ansible_facts['distribution_major_version'] != "8"
69
+ when : not (ansible_facts['distribution'] == "OracleLinux" and ansible_facts['distribution_major_version'] == "8")
72
70
73
71
- name : (OracleLinux 8) Install cryptography package
74
72
ansible.builtin.package :
You can’t perform that action at this time.
0 commit comments