Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

ENHANCEMENTS:

Refactor the OSS BSD installation process to consolidate tasks and avoid Ansible Lint warnings.
- Refactor the OSS BSD installation process to consolidate tasks and avoid Ansible Lint warnings.
- Enable SELinux configuration tasks on Oracle Linux OS.

## 0.24.0 (January 29, 2023)

Expand Down
2 changes: 1 addition & 1 deletion molecule/default/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
chdir: "{{ ((ansible_facts['system'] | lower is not search('bsd')) | ternary('/etc/nginx', '/usr/local/sbin')) }}"
changed_when: false
register: version
failed_when: version is not search('1.23.3')
failed_when: version is not search('1.23.4')
2 changes: 1 addition & 1 deletion tasks/prerequisites/prerequisites.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
- nginx_selinux | bool
- "'selinux' in ansible_facts"
- ansible_facts['os_family'] in ['RedHat', 'Suse']
- ansible_facts['distribution'] not in ['Amazon', 'OracleLinux']
- ansible_facts['distribution'] != 'Amazon'
block:
- name: Check if SELinux is enabled
ansible.builtin.debug:
Expand Down