Merge pull request #18 from danielkubat/harden

Use template to generate modprobe settings
This commit is contained in:
Louis Abel 2020-12-11 18:16:09 -07:00 committed by GitHub
commit 3f85cb863a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 8 deletions

View File

@ -175,7 +175,7 @@
dest: "/etc/audit/rules.d/collection.rules"
owner: root
group: root
mode: '600'
mode: '0600'
backup: true
notify:
- regenerate_auditd_rules
@ -207,15 +207,12 @@
- efi
- name: disable unused filesystems
lineinfile:
template:
src: "etc/modprobe.d/cis.conf.j2"
dest: "/etc/modprobe.d/cis.conf"
owner: root
group: root
owner: 'root'
group: 'root'
mode: '0644'
line: "install {{ item }} /bin/true"
state: present
create: true
with_items: "{{ modprobe_unused_filesystems }}"
tags:
- harden

View File

@ -0,0 +1,4 @@
# Generated by Ansible
{% for fs in modprobe_unused_filesystems %}
install {{ fs }} /bin/true
{% endfor %}