summaryrefslogtreecommitdiff
path: root/examples/minimal.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/minimal.yaml')
-rw-r--r--examples/minimal.yaml15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/minimal.yaml b/examples/minimal.yaml
new file mode 100644
index 0000000..fb04e0f
--- /dev/null
+++ b/examples/minimal.yaml
@@ -0,0 +1,15 @@
+tasks:
+ - name: Crear directorio de logs
+ module: file
+ args:
+ path: "/var/log/shflow"
+ state: present
+ type: directory
+ mode: "0755"
+ become: true
+
+ - name: Mostrar fecha en remoto
+ module: run
+ args:
+ command: "date"
+ become: false