Skip to content

Commit 7cc653f

Browse files
authored
Enable SELinux config with Oracle Linux (#595)
1 parent ee8a01a commit 7cc653f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
ENHANCEMENTS:
66

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

910
## 0.24.0 (January 29, 2023)
1011

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.3')
33+
failed_when: version is not search('1.23.4')

tasks/prerequisites/prerequisites.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
- nginx_selinux | bool
88
- "'selinux' in ansible_facts"
99
- ansible_facts['os_family'] in ['RedHat', 'Suse']
10-
- ansible_facts['distribution'] not in ['Amazon', 'OracleLinux']
10+
- ansible_facts['distribution'] != 'Amazon'
1111
block:
1212
- name: Check if SELinux is enabled
1313
ansible.builtin.debug:

0 commit comments

Comments
 (0)