mirror of
https://github.com/ansible-lockdown/RHEL9-CIS.git
synced 2025-12-25 22:53:06 +00:00
15 lines
296 B
YAML
15 lines
296 B
YAML
|
|
---
|
||
|
|
- name: Verify
|
||
|
|
hosts: all
|
||
|
|
gather_facts: false
|
||
|
|
become: true
|
||
|
|
|
||
|
|
vars:
|
||
|
|
role_name: "{{ lookup('env', 'MOLECULE_PROJECT_DIRECTORY') | basename }}"
|
||
|
|
|
||
|
|
tasks:
|
||
|
|
- name: "Include verify tasks"
|
||
|
|
ansible.builtin.include_role:
|
||
|
|
name: "{{ role_name }}"
|
||
|
|
tasks_from: verify
|