devops-exercises/exercises/ansible/solutions/update_upgrade_task.md
Umegbewe Nwebedu 8c23697b8d
Added ansible exercise and solution for upgrading and updating apt packages (#159)
* added solutions and exercise to readme
2021-09-27 11:00:16 +03:00

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
```