Merge "V-38458: /etc/group user ownership"

This commit is contained in:
Jenkins 2015-10-10 03:23:32 +00:00 committed by Gerrit Code Review
commit ce309a4f92
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