00df1fda10
* Add new lines to end of config file lines * Properly write out selinux config file Change module behavior to not always report a change but warn if a reboot is needed and return reboot_required. Improve the output messages. Add strip parameter to get_file_lines utility to help with parsing the selinux config file. * Add return documentation * Add integration tests for selinux module * Use consistent capitalization for SELinux * Use atomic_move in selinux module * Don't copy the config file initially There's no need to make a copy just for reading. * Put message after set_config_policy in case the change fails * Add aliases to selinux tests
30 lines
1 KiB
YAML
30 lines
1 KiB
YAML
# (c) 2017, Sam Doran <sdoran@redhat.com>
|
|
|
|
# This file is part of Ansible
|
|
#
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
- debug:
|
|
msg: SELinux is disabled
|
|
when: ansible_selinux is defined and ansible_selinux == False
|
|
|
|
- debug:
|
|
msg: SELinux is {{ ansible_selinux.status }}
|
|
when: ansible_selinux is defined and ansible_selinux != False
|
|
|
|
- include: selinux.yml
|
|
when:
|
|
- ansible_selinux is defined
|
|
- ansible_selinux != False
|
|
- ansible_selinux.status == 'enabled'
|