summaryrefslogtreecommitdiff
path: root/examples/minimal.yaml
blob: fb04e0f285be7b604d4826356f3d71a5afa0d86b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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