8c23697b8d
* added solutions and exercise to readme
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
|
|
```
|