10 lines
174 B
YAML
10 lines
174 B
YAML
---
|
|
- name: Execute Command
|
|
hosts: all
|
|
|
|
tasks:
|
|
|
|
- name: On execute la commande "{{ command }}"
|
|
shell:
|
|
chdir: "{{ execution_path }}"
|
|
cmd: "{{ command }}" |