V-38458: /etc/group user ownership

Implements: blueprint security-hardening

Change-Id: I170ade166813499a82288eb17bc5150e3495bbdc
This commit is contained in:
Major Hayden 2015-10-09 16:15:55 -05:00
parent 58ac7a8a7a
commit 497bca8193
2 changed files with 11 additions and 1 deletions

View File

@ -0,0 +1,2 @@
The Ansible task will ensure that the ``/etc/group`` file is owned by the root
user.

View File

@ -40,10 +40,18 @@
- cat2
- V-38449
- name: V-38459 - The /etc/group file must be group-owned by root
- name: V-38458 - The /etc/group file must be owned by root
file:
dest: /etc/group
owner: root
tags:
- file_perms
- cat2
- V-38458
- name: V-38459 - The /etc/group file must be group-owned by root
file:
dest: /etc/group
group: root
tags:
- file_perms