Major Hayden 3c0cc41969 Enable virus scanner
The STIG requires that a virus scanner is installed and running. This
won't be popular on many hypervisors or OpenStack control plane servers,
so the tasks are disabled by default.

Implements: blueprint security-rhel7-stig
Change-Id: I3b4803139e63aae3b740e8e150cb552a298c4ece
2016-11-14 08:23:38 -06:00

60 lines
1.8 KiB
YAML

---
# Copyright 2015, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Create temporary directory to hold any temporary files
command: "mktemp -d"
register: mktemp_result
changed_when: False
when:
- not check_mode | bool
- name: Set a fact for the temporary directory
set_fact:
temp_dir: "{{ mktemp_result.stdout }}"
changed_when: False
when:
- not check_mode | bool
# Package installations and removals must come first so that configuration
# changes can be made later.
- include: packages.yml
# Package managers are managed first since the changes in these tasks will
# affect the remainder of the tasks in the role.
- include: apt.yml
when: ansible_os_family | lower == 'debian'
- include: rpm.yml
when: ansible_os_family | lower == 'redhat'
# The bulk of the security changes are applied in these tasks. The tasks in
# each file are tagged with the same name (for example, tasks in `auth.yml`
# are tagged with `auth`). Also, the tag name matches up with the "STIG
# Controls by Tag" section of the role documentation.
- include: auditd.yml
- include: auth.yml
- include: file_perms.yml
- include: graphical.yml
- include: misc.yml
- include: sshd.yml
- name: Remove the temporary directory
file:
path: "{{ temp_dir }}"
state: absent
changed_when: False
when:
- not check_mode | bool