blob: 7663dcd7000b701fcaaa979917175a7561529bd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
tasks:
- name: Actualizar datos del Repo
module: run
args:
command: "apt-get -y update"
become: true
- name: Actualizar SO
module: run
args:
command: "apt-get -y upgrade"
become: true
|