09754df82f
Kayobe has a role to disable SELinux. Some systems do not have SELinux installed (this can be reproduced by removing the selinux-policy package and removing /etc/selinux/config). This causes the selinux Ansible module to fail, since it can't write to /etc/selinux/config: Please install SELinux-policy package, if this package is not installed previously. This change fixes the issue by only disabling SELinux if the config file exists. Change-Id: I25c7282c1e8dcdee3e7feddef9d66ca5beeb1bce Story: 2007704 Task: 39820
59 lines
1.8 KiB
YAML
59 lines
1.8 KiB
YAML
---
|
|
- name: Ensure required packages are installed
|
|
package:
|
|
name: python3-libselinux
|
|
state: present
|
|
become: True
|
|
|
|
- name: Check if SELinux configuration file exists
|
|
stat:
|
|
path: /etc/selinux/config
|
|
register: stat_result
|
|
|
|
- name: Ensure SELinux is disabled
|
|
selinux:
|
|
state: disabled
|
|
register: selinux_result
|
|
become: True
|
|
when: stat_result.stat.exists
|
|
|
|
- block:
|
|
- name: Set a fact to determine whether we are running locally
|
|
set_fact:
|
|
is_local: "{{ lookup('pipe', 'hostname') in [ansible_hostname, ansible_nodename] }}"
|
|
|
|
# Any SSH connection errors cause ansible to fail the task. We therefore
|
|
# perform a manual SSH connection and allow the command to fail.
|
|
- name: Reboot the system to apply SELinux changes (remote)
|
|
local_action:
|
|
# Use -tt to force a pseudo tty.
|
|
module: >
|
|
command
|
|
ssh -tt {{ ansible_user }}@{{ ansible_host | default(inventory_hostname) }}
|
|
sudo shutdown -r now "Applying SELinux changes"
|
|
register: reboot_result
|
|
failed_when:
|
|
- reboot_result is failed
|
|
- "'closed by remote host' not in reboot_result.stderr"
|
|
when: not is_local | bool
|
|
|
|
- name: Reboot the system to apply SELinux changes (local)
|
|
command: shutdown -r now "Applying SELinux changes"
|
|
become: True
|
|
when: is_local | bool
|
|
|
|
# If we're running this locally we won't get here.
|
|
- name: Wait for the system to boot up (remote)
|
|
local_action:
|
|
module: wait_for
|
|
host: "{{ ansible_host | default(inventory_hostname) }}"
|
|
port: 22
|
|
state: started
|
|
# Wait for 10 seconds before polling to ensure the node has shutdown.
|
|
delay: 10
|
|
timeout: "{{ disable_selinux_reboot_timeout }}"
|
|
when: not is_local | bool
|
|
when:
|
|
- disable_selinux_do_reboot | bool
|
|
- selinux_result is changed
|