blob: 2724a306bde1177cf51c0f451e72f59f340011de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
---
- name: Update the server
hosts: vps
become: true
tasks:
- name: Update and upgrade apt packages
ansible.builtin.apt:
update_cache: true
upgrade: true
autoremove: true
...
|