Skip to content

Commit 4b7090c

Browse files
authored
Fix bug introduced in #620 (#621)
1 parent dc1055c commit 4b7090c

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

molecule/default/verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@
3030
chdir: "{{ ((ansible_facts['system'] | lower is not search('bsd')) | ternary('/etc/nginx', '/usr/local/sbin')) }}"
3131
changed_when: false
3232
register: version
33-
failed_when: version is not search('1.23.4')
33+
failed_when: version is not search('1.25.0')

tasks/plus/setup-license.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,7 @@
6666
- name: (Debian/Red Hat/SLES OSs) Install cryptography package
6767
ansible.builtin.package:
6868
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")
7270

7371
- name: (OracleLinux 8) Install cryptography package
7472
ansible.builtin.package:

0 commit comments

Comments
 (0)