blob: e9ba61e4c2ccf1d1815b7b5e69cd54bd7db79717 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
tasks:
- name: Listar directorios tmp
module: run
args:
command: "ls -l /tmp"
become: false
- name: Listar directorios /root
module: run
args:
command: "ls -l /root"
become: true
|