99c4e02ecf
Name it instead "topics" so it won't be strange if some topics included "exercises" directory.
10 lines
163 B
Markdown
10 lines
163 B
Markdown
## Update and Upgrade apt packages task - Solution
|
|
|
|
```
|
|
- name: "update and upgrade apt packages."
|
|
become: yes
|
|
apt:
|
|
upgrade: yes
|
|
update_cache: yes
|
|
```
|