ansible/playbooks/apt_upgrade.yml

8 lines
155 B
YAML
Raw Normal View History

2023-08-10 11:26:43 +02:00
- hosts: morefine
name: Apt udate
2023-08-29 12:27:33 +02:00
become: true
2023-08-10 11:26:43 +02:00
tasks:
2023-08-10 11:31:31 +02:00
- name: Upgrade the OS
ansible.builtin.apt:
2023-08-29 12:34:15 +02:00
upgrade: full
become: true