829297c37a
Did didn't have ansible-lint setup properly, as a results our roles weren't actually linted properly. Fix variable linting issues and ignore ANSIBLE0012. Change-Id: I07aa940245e700c9f08df0f1920720f0ed9d3de0 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
9 lines
204 B
YAML
9 lines
204 B
YAML
- name: Remove sudo access for zuul user.
|
|
become: yes
|
|
file:
|
|
path: /etc/sudoers.d/zuul-sudo
|
|
state: absent
|
|
|
|
- name: Prove that general sudo access is actually revoked.
|
|
command: ! sudo -n true
|