-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a7c6ae0
commit 6c168e0
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
- name: Generar/Actualizar reporte de Scap en Red Hat Insights | ||
hosts: all | ||
gather_facts: no | ||
tasks: | ||
|
||
- name: Validar que los paquete necesarios se encuentren instalados | ||
yum: | ||
name: scap-security-guide | ||
state: latest | ||
|
||
- name: Ejecutar el comando de generacion / acutualizacion de reportes | ||
shell: insights-client --compliance | ||
register: salida | ||
|
||
- name: Debug de salida | ||
debug: | ||
var: salida | ||
|