Files
lucybarcenas 4e08320786 actualización variable shell
actualización variable shell
2026-05-06 12:41:33 -06:00

16 lines
307 B
Plaintext

#hello this is my first playbookk
- name: Ejecutar comando dinámico
hosts: all
become: yes
vars:
comando: "{{ command }}"
tasks:
- name: Ejecutar comando recibido
shell: "{{ comando }}"
register: resultado
- name: Mostrar salida
debug:
var: resultado.stdout