summaryrefslogtreecommitdiff
path: root/examples/log-shflow.yaml
blob: 016627181ec452a66ad0f8d8326adddb6b0f1f90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
tasks:
  - name: Crear directorio temporal
    module: file
    args:
      path: "/tmp/shflow"
      state: present
      type: directory
      mode: "0755"
      become: true

  - name: Mostrar fecha en remoto
    module: run
    args:
      command: "date"
      become: false