mirror of
https://github.com/bregman-arie/devops-exercises.git
synced 2026-02-05 16:19:10 +00:00
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
|
|
```
|